| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function safeUp() |
||
| 14 | { |
||
| 15 | $this->createTable('contacts', |
||
| 16 | [ |
||
| 17 | 'id' => $this->primaryKey(), |
||
| 18 | 'title' => $this->string()->notNull(), |
||
| 19 | 'address' => $this->string(128), |
||
| 20 | 'email' => $this->string(64), |
||
| 21 | 'phone' => $this->string(32), |
||
| 22 | 'metaKeys' => $this->string()->notNull(), |
||
| 23 | 'metaDescription' => $this->string()->notNull(), |
||
| 24 | 'default' => $this->tinyInteger(1)->defaultValue(0), |
||
| 25 | 'created_at' => $this->dateTime(), |
||
| 26 | 'updated_at' => $this->dateTime(), |
||
| 27 | ] |
||
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 39 |