Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function up(Schema $schema) : void |
||
18 | { |
||
19 | $this->addSql(' |
||
20 | ALTER TABLE employees |
||
21 | CHANGE staff staff ENUM(\'administrative\', \'art-director\', \'art-production\', \'art-core\', \'creative\', \'invited\') |
||
22 | DEFAULT \'creative\' NOT NULL COMMENT \'(DC2Type:EmployeeStaffEnum)\' |
||
23 | '); |
||
24 | } |
||
25 | |||
35 |