Simon Bruder
00d7647187
While diesel has a native rust interface, writing more complex queries is easier when you can just pass a SQL query string.
11 lines
202 B
SQL
11 lines
202 B
SQL
-- SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
|
|
--
|
|
-- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
ALTER TABLE items
|
|
DROP parent;
|
|
|
|
DROP VIEW item_tree;
|
|
|
|
DROP FUNCTION check_item_cycle;
|