Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class m190502_163142_create_positions_table extends Migration |
||
9 | { |
||
10 | /** |
||
11 | * {@inheritdoc} |
||
12 | */ |
||
13 | public function safeUp() |
||
14 | { |
||
15 | $this->createTable('positions', |
||
16 | [ |
||
17 | 'id' => $this->primaryKey(), |
||
18 | 'name' => $this->string(64)->notNull(), |
||
19 | 'created_at' => $this->dateTime(), |
||
20 | 'updated_at' => $this->dateTime(), |
||
21 | ] |
||
22 | ); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function safeDown() |
||
31 | } |
||
32 | } |
||
33 |