Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function down(Schema $schema) : void |
||
27 | { |
||
28 | $this->addSql(' |
||
29 | ALTER TABLE employees |
||
30 | CHANGE staff staff ENUM(\'administrative\', \'art-production\', \'art-core\', \'creative\', \'invited\') |
||
31 | DEFAULT \'creative\' NOT NULL COMMENT \'(DC2Type:EmployeeStaffEnum)\' |
||
32 | '); |
||
33 | } |
||
34 | } |
||
35 |