mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
9 lines
300 B
SQL
9 lines
300 B
SQL
-- Table Definition ----------------------------------------------
|
|
|
|
CREATE TABLE users (
|
|
id SERIAL PRIMARY KEY,
|
|
user_id character varying(32) DEFAULT ''::character varying UNIQUE,
|
|
name character varying(32) DEFAULT ''::character varying,
|
|
next_check_at timestamp without time zone
|
|
);
|
|
|