×
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

暂无评论