Laravel vytvoriť novú migráciu

Príklady kódu

14
0

laravel cudzí kľúč

Schema::table('posts', function (Blueprint $table) {
    $table->unsignedBigInteger('user_id');

    $table->foreign('user_id')->references('id')->on('users');
});
OR
Schema::table('posts', function (Blueprint $table) {
    $table->foreignId('user_id')->constrained();
});
7
0

php remeselník vykonať migráciu

php artisan make:migration create_users_table
4
0

pridať stĺpec v laravel migrácie

php artisan make:migration add_paid_to_users_table --table=users
2
0

vytvorenie migrácie Laravelu

php artisan make:migration create_users_table
2
0

vrátenie migrácie remeselníka

php artisan migrate:rollback
0
0

laravel vytvoriť novú migráciu

php artisan make:migration create_flights_table

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................