“PHP Artisan fait la migration” Réponses codées

PHP Artisan Migrate Create Table

php artisan make:migration create_users_table

php artisan migrate
Shadow

artisan fabriquer un modèle avec migration

php artisan make:model Model_Name -m
RaFiNhA90

Clé étrangère de Laravel

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 fait la migration

php artisan make:migration create_users_table
Mobile Star

Laravel Créer un modèle et une migration

# 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

rafraîchissement artisanal

Try this command it works for me

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

Réponses similaires à “PHP Artisan fait la migration”

Questions similaires à “PHP Artisan fait la migration”

Plus de réponses similaires à “PHP Artisan fait la migration” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code