Files
icarus_auth/migrations/20250402221858_init_migrate.sql
phoenix 92ef6a5064
All checks were successful
Rust Build / Check (pull_request) Successful in 52s
Rust Build / Test Suite (pull_request) Successful in 59s
Rust Build / Rustfmt (pull_request) Successful in 26s
Rust Build / Clippy (pull_request) Successful in 1m1s
Rust Build / build (pull_request) Successful in 1m12s
Updated migrations
2025-04-04 10:31:20 -04:00

10 lines
269 B
SQL

-- Add migration script here
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()
);