fixup! Delete item event with item

This commit is contained in:
Simon Bruder 2024-07-25 20:34:27 +02:00
parent 1aee8ee22d
commit e06531e1cd
Signed by: simon
GPG key ID: 347FF8699CDA0776
2 changed files with 0 additions and 8 deletions

View file

@ -2,12 +2,8 @@
--
-- SPDX-License-Identifier: AGPL-3.0-or-later
BEGIN;
ALTER TABLE item_events
DROP CONSTRAINT item_events_item_fkey;
ALTER TABLE item_events
ADD CONSTRAINT item_events_item_fkey FOREIGN KEY (item) REFERENCES items(id);
COMMIT;

View file

@ -2,12 +2,8 @@
--
-- SPDX-License-Identifier: AGPL-3.0-or-later
BEGIN;
ALTER TABLE item_events
DROP CONSTRAINT item_events_item_fkey;
ALTER TABLE item_events
ADD CONSTRAINT item_events_item_fkey FOREIGN KEY (item) REFERENCES items(id) ON DELETE CASCADE;
COMMIT;