addSql('CREATE TABLE env_at (id SERIAL NOT NULL, PRIMARY KEY(id))'); $this->addSql('ALTER TABLE contrats ADD date_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL'); $this->addSql('ALTER TABLE contrats ADD end_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL'); $this->addSql('COMMENT ON COLUMN contrats.date_at IS \'(DC2Type:datetime_immutable)\''); $this->addSql('COMMENT ON COLUMN contrats.end_at IS \'(DC2Type:datetime_immutable)\''); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('CREATE SCHEMA public'); $this->addSql('DROP TABLE env_at'); $this->addSql('ALTER TABLE contrats DROP date_at'); $this->addSql('ALTER TABLE contrats DROP end_at'); } }