Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 6 |
Ratio | 100 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
10 | public function up(Schema $schema) : void |
||
11 | { |
||
12 | $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'postgresql', 'Migration can only be executed safely on \'postgresql\'.'); |
||
13 | |||
14 | $this->addSql('ALTER TABLE swp_tenant ADD pwa_config_url VARCHAR(255) DEFAULT NULL'); |
||
15 | } |
||
16 | |||
24 |