| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class Version20240705092745_StarSystem extends AbstractMigration |
||
| 11 | { |
||
| 12 | public function getDescription(): string |
||
| 13 | { |
||
| 14 | return 'Removes the following obsolete fields from stu_systems: cx, cy'; |
||
| 15 | } |
||
| 16 | |||
| 17 | public function up(Schema $schema): void |
||
| 18 | { |
||
| 19 | $this->addSql('DROP INDEX coordinate_idx;'); |
||
| 20 | $this->addSql('ALTER TABLE stu_systems DROP cx;'); |
||
| 21 | $this->addSql('ALTER TABLE stu_systems DROP cy;'); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function down(Schema $schema): void |
||
| 29 | } |
||
| 30 | } |
||
| 31 |