“Säulenmigration Laravel hinzufügen” 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

Säulenmigration Laravel hinzufügen

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

Laravel -Migration Fügen Sie die Säule nachher hinzu

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

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

Fügen Sie die Säule zur Migration Laravel hinzu

php artisan make:migration add_profile_to_users
Relieved Rook

Ähnliche Antworten wie “Säulenmigration Laravel hinzufügen”

Fragen ähnlich wie “Säulenmigration Laravel hinzufügen”

Weitere verwandte Antworten zu “Säulenmigration Laravel hinzufügen” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen