| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class Version20241123194015 extends AbstractMigration |
||
| 12 | { |
||
| 13 | public function getDescription(): string |
||
| 14 | { |
||
| 15 | return 'Add NPC Buildable boolean'; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function up(Schema $schema): void |
||
| 19 | { |
||
| 20 | |||
| 21 | $this->addSql('ALTER TABLE stu_rumps ADD npc_buildable BOOLEAN DEFAULT NULL'); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function down(Schema $schema): void |
||
| 25 | { |
||
| 26 | $this->addSql('ALTER TABLE stu_rumps DROP npc_buildable'); |
||
| 27 | } |
||
| 29 |