elnafo/crates/db/migrations/2024-03-04-191840_create_users/up.sql

10 lines
213 B
MySQL
Raw Normal View History

2024-03-05 00:29:03 +05:00
-- 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
);