Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
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('CREATE SEQUENCE npd_settings_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
||
22 | $this->addSql('CREATE TABLE npd_settings ( |
||
23 | id INT NOT NULL, |
||
43 |