addSql(<<<'SQL' ALTER TABLE "user" DROP uuid SQL); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql(<<<'SQL' CREATE SCHEMA public SQL); $this->addSql(<<<'SQL' ALTER TABLE "user" ADD uuid UUID NOT NULL SQL); } }