“Ajouter une nouvelle colonne dans Laravel Migration” Réponses codées

Ajouter une nouvelle colonne dans Laravel Migration

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

Ajouter un autre champ dans la migration existante Laravel

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

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

Ajouter une nouvelle colonne dans Laravel Migration

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

Réponses similaires à “Ajouter une nouvelle colonne dans Laravel Migration”

Questions similaires à “Ajouter une nouvelle colonne dans Laravel Migration”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code