①运行应用中所有未执行的迁移: php artisan migrate
②创建数据表:php artisan make:migration create_article_table --create=article
③更新表:php artisan make:migration alter_article_table --table=article
④回滚所有的应用迁移:php artisan migrate:reset
原文:https://www.cnblogs.com/honeyJYY/p/11383108.html