This repository has been archived on 2025-07-20. You can view files and clone it, but cannot push or open issues or pull requests.
fediswald/apps/backend/drizzle/0000_nosy_khan.sql

8 lines
334 B
MySQL
Raw Normal View History

2025-04-01 09:55:32 +03:00
CREATE TABLE "users" (
"id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "users_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1),
"name" varchar(255) NOT NULL,
"email" varchar(255) NOT NULL,
"hashed_password" varchar(255) NOT NULL,
CONSTRAINT "users_email_unique" UNIQUE("email")
);