“Laravel Ajouter une colonne à la table” 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

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

Laravel Ajouter une colonne à la table

Schema::table('users', function (Blueprint $table) {
	$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});
Energetic Elk

Réponses similaires à “Laravel Ajouter une colonne à la table”

Questions similaires à “Laravel Ajouter une colonne à la table”

Plus de réponses similaires à “Laravel Ajouter une colonne à la table” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code