Laravel 마이그레이션 롤백

코드 예제

5
0

라라벨 마이그레이션

php artisan migrate
4
0

마이그레이션 롤백

php artisan migrate:rollback
4
0

장인 롤백 한 마이그레이션

php artisan migrate:rollback --step=1
3
0

laravel 모델 및 마이그레이션 만들기

# 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
2
0

라라벨 마이그레이션 정수

$table->bigInteger('votes');
1
0

라라벨 마이그레이션 롤백

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

다른 언어로

이 페이지는 다른 언어로되어 있습니다

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