ente/server/migrations/32_add_trash_table.down.sql

5 lines
193 B
MySQL
Raw Permalink Normal View History

2024-03-01 08:07:01 +00:00
DROP TRIGGER IF EXISTS update_trash_updated_at ON trash;
ALTER TABLE trash DROP CONSTRAINT IF EXISTS trash_state_constraint;
DROP INDEX trash_updated_at_time_index;
DROP TABLE IF EXISTS trash;