Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | public function up(Schema $schema): void |
||
18 | { |
||
19 | $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); |
||
20 | |||
21 | $this->addSql('ALTER TABLE npd_notification ADD url_title VARCHAR(255) DEFAULT NULL'); |
||
22 | } |
||
32 |