首页 > 其他 > 详细

laravel migrate增加、修改、删除字段

时间:2020-06-19 23:20:30      阅读:174      评论:0      收藏:0      [点我收藏+]

生成migration文件

 1 php artisan make:migration alter_xxx_table 

修改migration文件

 1     public function up()
 2     {
 3         Schema::table(‘xxx‘, function (Blueprint $table) {
 4             $table->string(‘a‘, 1000); //增加
 5             $table->string(‘b‘, 100)->nullable()->change(); //修改
 6             $table->renameColumn(‘c‘, ‘d‘); //重命名
 7             $table->dropColumn([‘e‘, ‘f‘, ‘g‘]);//删除
 8         });
 9     }
10 
11     /**
12      * Reverse the migrations.
13      *
14      * @return void
15      */
16     public function down()
17     {
18         Schema::table(‘xxx‘, function (Blueprint $table) {
19             $table->drop_column(‘a‘); //增加
20             $table->string(‘b‘, 100)->change(); //修改
21             $table->renameColumn(‘d‘, ‘c‘); //重命名
22             $table->string(‘e‘, 1000); //删除
23             $table->string(‘f‘, 1000); //删除
24             $table->string(‘g‘, 1000); //删除
25         });
26     }
27 }

执行命令

 1 php artisan migrate 

撤回命令

 1 php artisan migrate:rollback --step=n(n为撤回步数) 

 

laravel migrate增加、修改、删除字段

原文:https://www.cnblogs.com/VRGamer-006/p/13166810.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!