Allow changing db schema from public (#4873)

* Remove public schema from enum defs

* Update queries

* Fix
This commit is contained in:
Marcin Tojek
2022-11-04 09:15:17 +01:00
committed by GitHub
parent 104d6608d9
commit 3f6c4486f7
4 changed files with 13 additions and 11 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ SELECT
FROM
users
WHERE
status = 'active'::public.user_status AND deleted = false;
status = 'active'::user_status AND deleted = false;
-- name: InsertUser :one
INSERT INTO