“PHP migruje” Kod odpowiedzi

Rolowanie migracji

php artisan migrate:rollback
Crazy Caterpillar

ponownie migruj Laravel

Try:
composer dump-autoload
php artisan config:cache

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

PHP Artisan Zobacz ostatnią migrację

php artisan migrate:status
Crazy Caterpillar

Laravel tworzy migrację

// 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

PHP migruje

php artisan make:migration create_person_table
Watcher O_O

Świeże migrqte laravel

$ php artisan migrate:fresh

Dropped all tables successfully.
Migration table created successfully.
Migrating: 2014_10_12_000000_create_users_table
Migrated:  2014_10_12_000000_create_users_table
Migrating: 2014_10_12_100000_create_password_resets_table
Migrated:  2014_10_12_100000_create_password_resets_table
p2sias

Odpowiedzi podobne do “PHP migruje”

Pytania podobne do “PHP migruje”

Więcej pokrewnych odpowiedzi na “PHP migruje” w PHP

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

Przeglądaj inne języki kodu