li7y/migrations/20240709133113_item_make_name_optional.down.sql
Simon Bruder 00d7647187
Switch to sqlx
While diesel has a native rust interface, writing more complex queries
is easier when you can just pass a SQL query string.
2024-07-19 00:05:26 +02:00

14 lines
264 B
SQL

-- SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
--
-- SPDX-License-Identifier: AGPL-3.0-or-later
ALTER TABLE items
DROP CONSTRAINT name_not_empty;
UPDATE items
SET name = ''
WHERE NAME IS NULL;
ALTER TABLE items
ALTER name SET NOT NULL;