“Adicione nova coluna à tabela Laravel” Respostas de código

Migração de Laravel Adicione coluna à tabela existente

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

Adicionar coluna em Laravel Migration CMND

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

Adicione nova coluna na tabela existente na migração de Laravel

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

Adicione nova coluna à tabela 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

Como adicionar nova coluna em Larevel com migração

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

Respostas semelhantes a “Adicione nova coluna à tabela Laravel”

Perguntas semelhantes a “Adicione nova coluna à tabela Laravel”

Procure respostas de código populares por idioma

Procurar outros idiomas de código