Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
10 | final class Version20250107131826_Remove_Pm_Replied extends AbstractMigration |
||
11 | { |
||
12 | public function getDescription(): string |
||
13 | { |
||
14 | return 'Removes the unused attribute stu_pms.replied.'; |
||
15 | } |
||
16 | |||
17 | public function up(Schema $schema): void |
||
18 | { |
||
19 | $this->addSql('ALTER TABLE stu_pms DROP replied'); |
||
20 | } |
||
21 | |||
22 | public function down(Schema $schema): void |
||
25 | } |
||
26 | } |
||
27 |