迁移文件 migration
#创建一个迁移
php artisan make:migration create_store_categories_table
#运行所有未完成的迁移
php artisan migrate
#如果要查看到目前为止已运行哪些迁移
php artisan migrate:status
#如果您希望查看迁移将执行的 SQL 语句而不实际运行它们
php artisan migrate --pretend
#某些迁移操作具有破坏性,这意味着它们可能会导致数据丢失。为了防止您对生产数据库运行这些命令,在执行命令之前,系统将提示您进行确认。若要强制命令在没有提示的...