addSql("RENAME TABLE `thermometer` TO `location_thermometer`"); $this->addSql("RENAME TABLE `status` TO `location_status`"); } public function down(Schema $schema): void { $this->addSql("RENAME TABLE `location_thermometer` TO `thermometer`"); $this->addSql("RENAME TABLE `location_status` TO `status`"); } }