Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function safeUp() |
||
14 | { |
||
15 | $this->createTable('home', |
||
16 | [ |
||
17 | 'id' => $this->primaryKey(), |
||
18 | 'title' => $this->string(128)->notNull(), |
||
19 | 'description' => $this->text(), |
||
20 | 'content' => $this->text(), |
||
21 | 'metaKeys' => $this->string(128), |
||
22 | 'metaDescription' => $this->string(), |
||
23 | 'default' => $this->tinyInteger()->defaultValue(0), |
||
24 | 'created_at' => $this->dateTime(), |
||
25 | 'updated_at' => $this->dateTime(), |
||
26 | ] |
||
38 |