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

Adicione nova coluna à tabela existente Laravel

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

Adicionar nova coluna na migração de Laravel

Schema::table('table_name', function (Blueprint $table) {
            $table->string('column_name', 255)->nullable()->after('previous_column_name');
        });
Super Starling

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

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

Procure respostas de código populares por idioma

Procurar outros idiomas de código