Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function safeUp() |
||
14 | { |
||
15 | $this->createMultiLanguageTable('contacts', |
||
16 | [ |
||
17 | 'title' => $this->string(128)->notNull(), |
||
18 | 'address' => $this->string(128), |
||
19 | 'email' => $this->string(128), |
||
20 | 'phone' => $this->string(128), |
||
21 | 'metaKeys' => $this->string(128)->notNull(), |
||
22 | 'metaDescription' => $this->string()->notNull(), |
||
23 | ], |
||
24 | [ |
||
25 | 'default' => $this->tinyInteger()->defaultValue(0), |
||
26 | 'mapQ' => $this->string(128), |
||
27 | 'mapZoom' => $this->tinyInteger(), |
||
28 | ] |
||
40 |