Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class Version20250306185900 extends AbstractMigrationChamilo |
||
13 | { |
||
14 | public function getDescription(): string |
||
15 | { |
||
16 | return 'Removes assigned_by field from skill_rel_user table.'; |
||
17 | } |
||
18 | |||
19 | public function up(Schema $schema): void |
||
20 | { |
||
21 | $this->addSql("ALTER TABLE skill_rel_user DROP COLUMN assigned_by;"); |
||
22 | } |
||
23 | |||
24 | public function down(Schema $schema): void |
||
27 | } |
||
28 | } |
||
29 |