Actualización artesanal de php

Ejemplos de código

5
0

migración de laravel

php artisan migrate
5
0

laravel migración semilla fresca

php artisan migrate:fresh --seed
3
0

laravel crear 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
2
0

retroceso de la migración artesanal

php artisan migrate:rollback
0
0

volver a migrar laravel

Try:
composer dump-autoload
php artisan config:cache

If not working also try:
php artisan migrate:refresh.
0
0

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:

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................