“Добавить новую колонку в миграцию Laravel” Ответ

Добавить новую колонку в миграцию Laravel

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

Добавить колонку в Laravel Migration Cmnd

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

Добавьте еще одно поле в существующую миграцию Laravel

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

миграция Laravel добавить колонку после

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

Добавить новый столбец в таблицу Laravel

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

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

php artisan migrate
Noob Learner

Добавить новую колонку в миграцию Laravel

Schema::table('table_name', function (Blueprint $table) {
            $table->string('column_name', 255)->nullable()->after('previous_column_name');
        });
Super Starling

Ответы похожие на “Добавить новую колонку в миграцию Laravel”

Вопросы похожие на “Добавить новую колонку в миграцию Laravel”

Смотреть популярные ответы по языку

Смотреть другие языки программирования