| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function safeUp() |
||
| 14 | { |
||
| 15 | $this->createMultiLanguageTable('home', |
||
| 16 | [ |
||
| 17 | 'title' => $this->string(128), |
||
| 18 | 'description' => $this->text(), |
||
| 19 | 'content' => $this->text(), |
||
| 20 | 'metaKeys' => $this->string(128), |
||
| 21 | 'metaDescription' => $this->string(), |
||
| 22 | ], |
||
| 23 | [ |
||
| 24 | 'default' => $this->tinyInteger()->defaultValue(0), |
||
| 25 | ] |
||
| 37 |