“Comment ajouter une nouvelle colonne dans Laravel 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

Ajouter une colonne dans Laravel Migration CMND

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

Comment ajouter une nouvelle colonne dans Laravel Migration

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 colonne à la migration Laravel

php artisan make:migration add_profile_to_users
Relieved Rook

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 à “Comment ajouter une nouvelle colonne dans Laravel Migration”

Questions similaires à “Comment ajouter une nouvelle colonne dans Laravel Migration”

Plus de réponses similaires à “Comment ajouter une nouvelle colonne dans Laravel Migration” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code