addSql('CREATE TABLE contacts (id SERIAL NOT NULL, phone_number VARCHAR(255) DEFAULT NULL, due_date TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, contacted BOOLEAN NOT NULL, gateway_response VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id))'); } 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 contacts'); } }