elnafo/crates/db/migrations/2024-03-04-191840_create_users/up.sql
2024-03-05 00:29:03 +05:00

10 lines
213 B
SQL

-- Your SQL goes here
CREATE TABLE "users"(
"id" SERIAL NOT NULL PRIMARY KEY,
"login" TEXT NOT NULL,
"hashed_password" TEXT NOT NULL,
"name" TEXT NOT NULL,
"email" TEXT NOT NULL,
"is_admin" BOOL NOT NULL
);