Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function up(Schema $schema): void |
||
21 | { |
||
22 | // this up() migration is auto-generated, please modify it to your needs |
||
23 | $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); |
||
24 | |||
25 | $this->addSql('ALTER TABLE npd_module ADD created TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
26 | $this->addSql('ALTER TABLE npd_module ADD updated TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL'); |
||
27 | $this->addSql('ALTER TABLE npd_user ADD created TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
28 | $this->addSql('ALTER TABLE npd_user ADD updated TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL'); |
||
29 | } |
||
43 |