stock.geolock.fr/apps/api/drizzle/0009_sweet_wrecker.sql
2026-02-24 16:10:30 +00:00

10 lines
356 B
SQL

CREATE TABLE "users" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"username" text NOT NULL,
"password_hash" text NOT NULL,
"display_name" text NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT "users_username_unique" UNIQUE("username")
);