“Como adicionar nova coluna em Larevel com migração” 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

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 “Como adicionar nova coluna em Larevel com migração”

Perguntas semelhantes a “Como adicionar nova coluna em Larevel com migração”

Mais respostas relacionadas para “Como adicionar nova coluna em Larevel com migração” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código