【发布时间】:2018-10-11 16:07:20
【问题描述】:
我已经使用 Gii 生成了 CRUD,但我的迁移没有按预期工作。
'id' => $this->primaryKey(),
'student' => $this->string(255)->notNull(),
'diploma_teacher' => $this->string(255)->notNull(),
'type_of_work' => $this->string(255)->notNull(),
'student_classification' => $this->string(255)->notNull(),
'title' => $this->string(255)->notNull(),
'created_at' => $this->dateTime()->notNull(),
'updated_at' => $this->dateTime()->notNull(),
当创建新的 Diploma Work 字段时 created_at 和 updated_at
0000-00-00 00:00:00
0000-00-00 00:00:00
【问题讨论】:
标签: php mysql model-view-controller yii yii2