“Ajoutez une nouvelle colonne à la table existante dans une migration” Réponses codées

Laravel Migration Ajouter une colonne au tableau existant

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

Ajoutez une nouvelle colonne à la table existante dans une migration

// 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

Réponses similaires à “Ajoutez une nouvelle colonne à la table existante dans une migration”

Questions similaires à “Ajoutez une nouvelle colonne à la table existante dans une migration”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code