“Добавить колонку в миграцию 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
Blushing Bear

Добавить новый столбец в таблицу 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”

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

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

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

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