“Laravel Migration Rollback” Code-Antworten

Laravel Rollback letzte Migration

php artisan migrate:rollback --step=1
Eranot

Migrationsrollback

php artisan migrate:rollback
Crazy Caterpillar

Laravel Rollback alle Migrationen

php artisan migrate:reset
Mohamad

Laravel Migration Rollback

To rollback one step:

php artisan migrate:rollback

To rollback multiple steps:

php artisan migrate:rollback --step=[x]
  
To drop all tables and reload all migrations:

php artisan migrate:fresh
Angry Albatross

Php Artisan siehe letzte Migration

php artisan migrate:status
Crazy Caterpillar

Frisch 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

Ähnliche Antworten wie “Laravel Migration Rollback”

Fragen ähnlich wie “Laravel Migration Rollback”

Weitere verwandte Antworten zu “Laravel Migration Rollback” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen