update check-db, add pgcrypto extension if not exists on init migration

This commit is contained in:
Francis Cao 2023-01-20 14:21:11 -08:00
parent fad38dc180
commit 7c0db0633f
2 changed files with 42 additions and 45 deletions

View file

@ -1,3 +1,6 @@
-- CreateExtension
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
-- CreateTable
CREATE TABLE "user" (
"user_id" UUID NOT NULL,