From 9c52b0b7b9533ce8d8fd614b58d22c93a42de297 Mon Sep 17 00:00:00 2001 From: Orion Kindel Date: Thu, 20 Jul 2023 12:50:05 -0500 Subject: [PATCH] fix: unbreak human_uuid --- schema/0015_human_uuid.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/0015_human_uuid.sql b/schema/0015_human_uuid.sql index 9ec9d03..0fbb678 100644 --- a/schema/0015_human_uuid.sql +++ b/schema/0015_human_uuid.sql @@ -2,7 +2,7 @@ create schema human_uuid; select public.create_newtype_text('human_uuid.huid'); -create table human_uuid.used (human_uuid.huid text primary key); +create table human_uuid.used (huid text primary key); create table human_uuid.object ( id int primary key generated always as identity , word text unique