throwIrreversibleMigrationException('The down version of this migration is ' . 'not written'); } public function up(Schema $schema): void { // this up() migration is auto-generated, please modify it to your needs $this->addSql('CREATE SCHEMA chill_3party'); $this->addSql('ALTER TABLE chill_third_party SET SCHEMA chill_3party'); $this->addSql('ALTER TABLE chill_3party.chill_third_party RENAME TO third_party'); $this->addSql('ALTER SEQUENCE chill_third_party_id_seq SET SCHEMA chill_3party'); $this->addSql('ALTER SEQUENCE chill_3party.chill_third_party_id_seq RENAME TO third_party_id_seq'); } }