“Fügen Sie eine neue Spalte für Tabelle Laravel hinzu” Code-Antworten

Laravel -Migration Fügen Sie der vorhandenen Tabelle die Spalte hinzu

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

Fügen Sie die Säule in Laravel Migration CMND hinzu

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

Fügen Sie eine neue Spalte in der vorhandenen Tabelle in der Laravel -Migration hinzu

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

Fügen Sie eine neue Spalte für Tabelle Laravel hinzu

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

Wie fügen Sie eine neue Spalte in Larevel mit Migration hinzu

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

Ähnliche Antworten wie “Fügen Sie eine neue Spalte für Tabelle Laravel hinzu”

Fragen ähnlich wie “Fügen Sie eine neue Spalte für Tabelle Laravel hinzu”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen