“миграция 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 добавить колонку после

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

Как добавить новую колонку в Larevel с миграцией

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

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

php artisan make:migration add_profile_to_users
Relieved Rook

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

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

Больше похожих ответов на “миграция Laravel добавить колонку после” по PHP

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

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