10 lines
284 B
SQL
10 lines
284 B
SQL
-- SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
|
|
--
|
|
-- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
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);
|