“Laravel Migration Ajouter une colonne après” 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

Ajouter une colonne dans Laravel Migration CMND

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

Laravel Migration Ajouter une colonne après

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

Ajouter une nouvelle colonne à la table Laravel

php artisan make:migration add_paid_to_users_table --table=users
  
public function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid')->after('status');
    });
}

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

php artisan migrate
Noob Learner

Comment ajouter une nouvelle colonne à Larevel avec la migration

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

Ajouter une colonne à la migration Laravel

php artisan make:migration add_profile_to_users
Relieved Rook

Réponses similaires à “Laravel Migration Ajouter une colonne après”

Questions similaires à “Laravel Migration Ajouter une colonne après”

Plus de réponses similaires à “Laravel Migration Ajouter une colonne après” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code