Laravel spustiť migrácie

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();
});
4
0

migrácia Laravelu

php artisan make:migration create_users_table --create=users

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

vytvorenie migračnej tabuľky v php

php artisan make:migration create_users_table
1
0

migrácia spustenia php artisan

php artisan migrate
1
0

migrovať čerstvé

php artisan migrate:refresh

#https://www.fiverr.com/tamerjarrar
0
0

nástroj na migráciu profilov laravel

php artisan migrate:refresh

php artisan migrate:refresh --seed

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
..................................................................................................................