7 lines
192 B
MySQL
7 lines
192 B
MySQL
|
-- SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
|
||
|
--
|
||
|
-- SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
ALTER TABLE items
|
||
|
ADD short_id INTEGER UNIQUE GENERATED ALWAYS AS IDENTITY;
|