addSql('ALTER TABLE offering ADD zip_code INT NOT NULL DEFAULT 0'); $this->addSql('ALTER TABLE offering ADD description TEXT NOT NULL DEFAULT \'Lorem ipsum dolor\''); } 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('ALTER TABLE offering DROP zip_code'); $this->addSql('ALTER TABLE offering DROP description'); } }