mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 17:57:47 +03:00
11 lines
370 B
SQL
11 lines
370 B
SQL
CREATE TABLE users
|
|
(
|
|
id text PRIMARY KEY NOT NULL,
|
|
username text UNIQUE NOT NULL,
|
|
"password" text NOT NULL,
|
|
vk_id int4 NULL,
|
|
access_token text UNIQUE NOT NULL,
|
|
"group" text NOT NULL,
|
|
role user_role NOT NULL,
|
|
version text NOT NULL
|
|
); |