“Dodaj nową kolumnę w istniejącej tabeli w migracji Laravel” Kod odpowiedzi

Migracja Laravel Dodaj kolumnę do istniejącej tabeli

php artisan make:migration add_paid_to_users_table --table=users
  
public function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid');
    });
}

public function down()
{
    Schema::table('users', function($table) {
        $table->dropColumn('paid');
    });
}

php artisan migrate
Indian Gooner

Dodaj nową kolumnę do istniejącej tabeli w migracji

// for Laravel 5+
php artisan make:migration add_email_to_users_table --table=users

public function up()
{
    Schema::table('users', function($table) {
        $table->integer('email');
    });
}

public function down()
{
    Schema::table('users', function($table) {
        $table->dropColumn('email');
    });
}

php artisan migrate
Yogesh

Dodaj nową kolumnę w istniejącej tabeli w migracji Laravel

php artisan make:migration add_paid_to_users_table --table=users
Blushing Bear

migracja laravel Dodaj kolumnę po

Schema::table('users', function ($table) {
    $table->string('email')->after('id')->nullable();
});
Courageous Cod

Jak dodać nową kolumnę w Larevel z migracją

php artisan make:migration add_paid_to_users_table --table=users


public function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid');
    });
}
and don't forget to add the rollback option:

public function down()
{
    Schema::table('users', function($table) {
        $table->dropColumn('paid');
    });
}
shafeeque

Dodaj kolumnę do migracji Laravel

php artisan make:migration add_profile_to_users
Relieved Rook

Odpowiedzi podobne do “Dodaj nową kolumnę w istniejącej tabeli w migracji Laravel”

Pytania podobne do “Dodaj nową kolumnę w istniejącej tabeli w migracji Laravel”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu