[RELEASE] - bump version

This commit is contained in:
2025-04-05 12:55:27 +02:00
parent 528636de5d
commit 9e9dc0fef6
5 changed files with 1 additions and 1 deletions

6
sql/v0.5.0/002-types.sql Normal file
View File

@@ -0,0 +1,6 @@
-- make name index unique order by name
DROP INDEX IF EXISTS types_name_key;
CREATE UNIQUE INDEX IF NOT EXISTS types_name_key
ON types (name ASC);