dynamic_db #17

Merged
phoenix merged 31 commits from dynamic_db into devel 2025-04-05 01:30:36 +00:00
Showing only changes of commit 943d258cc0 - Show all commits

View File

@@ -1 +1,13 @@
-- 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()
);