Updated migration

This commit is contained in:
2025-04-03 15:13:45 -04:00
parent 4fb9505f65
commit 943d258cc0

View File

@@ -1 +1,13 @@
-- Add migration script here -- Add migration script here
-- CREATE DATABASE icarus_auth_test;
-- ALTER DATABASE icarus_auth_test OWNER TO icarus_op_test;
CREATE EXTENSION IF NOT EXISTS pgcrypto;
CREATE TABLE IF NOT EXISTS "user" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
username TEXT NOT NULL,
password TEXT NOT NULL,
date_created TIMESTAMPTZ NOT NULL DEFAULT NOW()
);