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

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

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

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