“Laravel 8 Adicione coluna à tabela existente” 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

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

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

Migração de Laravel Adicionar coluna depois

Schema::table('users', function ($table) {
    $table->string('email')->after('id')->nullable();
});
Courageous Cod

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

Adicione a coluna à migração Laravel

php artisan make:migration add_profile_to_users
Relieved Rook

Laravel 8 Adicione coluna à tabela existente

#single migration file create command
php artisan make:migration add_delivery_time_to_carts_table --table=carts
polyglot orca

Respostas semelhantes a “Laravel 8 Adicione coluna à tabela existente”

Perguntas semelhantes a “Laravel 8 Adicione coluna à tabela existente”

Procure respostas de código populares por idioma

Procurar outros idiomas de código