14 lines
319 B
PL/PgSQL
14 lines
319 B
PL/PgSQL
-- 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;
|