切换导航
新动弹计划
搜索
文章
动弹
排行榜
登录
注册
×
搜索
文章
动弹
热门关键词
#daily tips#
Cursor
掌控习惯
ChatGPT
Laravel
读书
#稍后阅读#
Falcon
2022-02-25 16:40
冒泡
#laravel#
创建migration文件,比如需要给users表添加一个username的字段(注意这个命名风格):`php artisan make:migration add_username_to_users_table` ,
这样会在migrate生成一个骨架文件,并且默认操作的表是users, 如: `Schema::table('users', function (Blueprint $table) ...`
如果需要指定表 ,可以这样写 `php artisan make:migration add_username_to_users_table --table 表名` ;
如果需要新建一个表(框架自带的基本都是),可以这样写 `php artisan make:migration add_username_to_users_table --create 表名`
执行 php artisan migrate 执行迁移。
0
暂无评论