$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才增加引擎的设置