mirror of
https://github.com/johndoe6345789/postgres.git
synced 2026-04-24 13:55:00 +00:00
9 lines
299 B
SQL
9 lines
299 B
SQL
CREATE TABLE "admin_users" (
|
|
"id" serial PRIMARY KEY NOT NULL,
|
|
"username" varchar(255) NOT NULL,
|
|
"password_hash" varchar(255) NOT NULL,
|
|
"created_at" timestamp DEFAULT now() NOT NULL,
|
|
"updated_at" timestamp DEFAULT now() NOT NULL,
|
|
CONSTRAINT "admin_users_username_unique" UNIQUE("username")
|
|
);
|