addSql('CREATE TABLE stripe_config (id SERIAL NOT NULL, name VARCHAR(255) DEFAULT NULL, webhook_id INT NOT NULL, secret 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 stripe_config'); } }