“Dodaj migrację kolumn 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 kolumnę w migracji laravel cmnd

php artisan make:migration add_paid_to_users_table --table=users
9jadev

Dodaj migrację kolumn 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 migrację kolumn Laravel”

Pytania podobne do “Dodaj migrację kolumn Laravel”

Więcej pokrewnych odpowiedzi na “Dodaj migrację kolumn Laravel” w PHP

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

Przeglądaj inne języki kodu