addSql('CREATE TABLE members (id SERIAL NOT NULL, pseudo VARCHAR(255) NOT NULL, role VARCHAR(255) NOT NULL, cosplayer BOOLEAN NOT NULL, crosscosplayer BOOLEAN NOT NULL, trans BOOLEAN NOT NULL, orientation VARCHAR(255) NOT 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 members'); } }