Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function up() |
||
16 | { |
||
17 | $tableOptions = null; |
||
18 | if ($this->db->driverName === 'mysql') { |
||
19 | $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE=InnoDB'; |
||
20 | } |
||
21 | $this->createTable('{{%page}}', [ |
||
22 | 'id' => $this->primaryKey(), |
||
23 | 'title' => $this->string()->notNull()->comment('标题'), |
||
24 | 'slug' => $this->string()->notNull()->comment('别名'), |
||
25 | 'status' => $this->boolean()->defaultValue(1), |
||
26 | 'content' => $this->text()->comment('内容'), |
||
27 | 'created_at' => $this->integer()->notNull()->comment('创建时间'), |
||
28 | 'updated_at' => $this->integer()->notNull()->comment('更新时间'), |
||
29 | ], $tableOptions); |
||
30 | } |
||
31 | |||
40 |