| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function safeUp() |
||
| 14 | { |
||
| 15 | $this->createTable('qualities', |
||
| 16 | [ |
||
| 17 | 'id' => $this->primaryKey(), |
||
| 18 | 'title' => $this->string(128)->notNull(), |
||
| 19 | 'description' => $this->text()->notNull(), |
||
| 20 | 'icon' => $this->string(128)->notNull(), |
||
| 21 | 'created_at' => $this->dateTime(), |
||
| 22 | 'updated_at' => $this->dateTime(), |
||
| 23 | ] |
||
| 35 |