Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function safeUp() |
||
14 | { |
||
15 | $this->createTable('technologies', [ |
||
16 | 'id' => $this->primaryKey(), |
||
17 | 'name' => $this->string(128)->notNull(), |
||
18 | 'share' => $this->tinyInteger(), |
||
19 | 'icon' => $this->string(128), |
||
20 | 'created_at' => $this->dateTime(), |
||
21 | 'updated_at' => $this->dateTime(), |
||
22 | ]); |
||
33 |