Delete item event with item

This commit is contained in:
Simon Bruder 2024-07-25 19:51:56 +02:00
parent 8eb59dd7c7
commit 96ec85009a
Signed by: simon
GPG key ID: 347FF8699CDA0776
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,13 @@
-- SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
--
-- 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

@ -0,0 +1,13 @@
-- SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
--
-- 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;