“Migração de Laravel 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 uma nova coluna à tabela existente em uma migração

// for Laravel 5+
php artisan make:migration add_email_to_users_table --table=users

public function up()
{
    Schema::table('users', function($table) {
        $table->integer('email');
    });
}

public function down()
{
    Schema::table('users', function($table) {
        $table->dropColumn('email');
    });
}

php artisan migrate
Yogesh

Adicionar coluna em Laravel Migration CMND

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

Adicione outro campo na migração existente 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

Respostas semelhantes a “Migração de Laravel Adicione coluna à tabela existente”

Perguntas semelhantes a “Migração de Laravel Adicione coluna à tabela existente”

Mais respostas relacionadas para “Migração de Laravel Adicione coluna à tabela existente” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código