“PHP Artisan tworzy migrację” Kod odpowiedzi

PHP Artisan migruj Tabela Utwórz

php artisan make:migration create_users_table

php artisan migrate
Shadow

Artisan tworzy model z migracją

php artisan make:model Model_Name -m
RaFiNhA90

Laravel zagraniczny klucz

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();
});
Courageous Cod

PHP Artisan tworzy migrację

php artisan make:migration create_users_table
Mobile Star

Laravel tworzy model i migrację

# If you would like to generate a database migration when you 
# generate the model, you may use the --migration or -m option:

php artisan make:model Flight --migration
php artisan make:model Flight -m
TheDutchScorpion

Odświeżanie rzemieślnicze

Try this command it works for me

php artisan migrate:fresh
However, be careful! This command will drop all data from your DB:
Ankur

Odpowiedzi podobne do “PHP Artisan tworzy migrację”

Pytania podobne do “PHP Artisan tworzy migrację”

Więcej pokrewnych odpowiedzi na “PHP Artisan tworzy migrację” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu