谁一开始就是大神?

Migrations能修改数据表的引擎吗?[2.0]

$this->createTable($this->table_name, [
    'id' => $this->primaryKey(),
    'title' => $this->string(100)->defaultValue('')->notNull()->comment('公告标题'),
    'content' => $this->text()->comment('公告内容'),
    'lang' => $this->string('20')->comment('标题语言'),
    'create_at' => $this->timestamp()->comment('创建时间'),
    'update_at' => $this->timestamp()->comment('更新时间'),
    'close_at' => $this->timestamp()->comment('结束时间'),
]);


删除掉,再migrate/create一个
safeUp方法如下
下载一个sqlyog 可以修改引擎的
这样你就绑定了Mysql数据库了,建议在执行迁移前判断下数据库,MYsql才增加引擎的设置

赞(0) 打赏
未经允许不得转载:菜鸟之家 » Migrations能修改数据表的引擎吗?[2.0]

评论 抢沙发

登录

找回密码

注册