Inventur/inventur_db/migrations/2024-08-22-205948_add_owner_to_table/down.sql
Johannes Randerath c06ddc9498 First release
2024-08-27 18:25:04 +02:00

6 lines
134 B
SQL

SET FOREIGN_KEY_CHECKS=0;
UPDATE TABLE jrtables
DROP COLUMN owner_id
DROP COLUMN fk_owner_id;
SET FOREIGN_KEY_CHECKS=1;