“Laravel hace migración” Código de respuesta

PHP Artisan Migrate Crear mesa

php artisan make:migration create_users_table

php artisan migrate
Shadow

reversión de la migración

php artisan migrate:rollback
Crazy Caterpillar

PHP Artisan hace migración

php artisan make:migration create_users_table
Mobile Star

PHP Artisan Ver última migración

php artisan migrate:status
Crazy Caterpillar

Laravel crea migración

// use the make:migration Artisan command to generate a database migration
php artisan make:migration create_flights_table

// use --create to indicate whether the migration will be creating a new table
php artisan make:migration create_flights_table --create=flights

// use --table to indicate the table name
php artisan make:migration add_destination_to_flights_table --table=flights
Yingfufu

Laravel hace migración

php artisan make:migration create_post_table
Marco Tellez

Respuestas similares a “Laravel hace migración”

Preguntas similares a “Laravel hace migración”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código