“PHP Artisan hace migración” Código de respuesta

PHP Artisan Migrate Crear mesa

php artisan make:migration create_users_table

php artisan migrate
Shadow

Artisan hace modelo con migración

php artisan make:model Model_Name -m
RaFiNhA90

llave extranjera 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 hace migración

php artisan make:migration create_users_table
Mobile Star

Laravel crea modelo y migración

# 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

actualización artesanal

Try this command it works for me

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

Respuestas similares a “PHP Artisan hace migración”

Preguntas similares a “PHP Artisan hace migración”

Más respuestas relacionadas con “PHP Artisan hace migración” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código