Files
hlaeja-device-registry/sql/v0.5.0/002-types.sql
2025-04-05 12:55:27 +02:00

7 lines
152 B
SQL

-- 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);