多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
使用 `Artisan CLI` 的 `make:migrate` 命令建立迁移文件: ~~~ ~~~ php artisan make:migration create_users_table ~~~ ~~~ 迁移文件会建立在 `database/migrations` 目录下,文件名会包含时间戳记,在执行迁移时用来决定顺序。 `--table` 和 `--create` 参数可以用来指定数据表名称,以及迁移文件是否要建立新的数据表。 ~~~ ~~~ php artisan make:migration add_votes_to_users_table --table=users php artisan make:migration create_users_table --create=users ~~~ ~~~