| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class m190502_163142_create_positions_table extends MultilanguageMigration |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * {@inheritdoc} |
||
| 12 | */ |
||
| 13 | public function safeUp() |
||
| 14 | { |
||
| 15 | $this->createMultiLanguageTable('positions', |
||
| 16 | [ |
||
| 17 | 'name' => $this->string(64), |
||
| 18 | ] |
||
| 19 | ); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function safeDown() |
||
| 28 | } |
||
| 29 | } |
||
| 30 |