mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
14 lines
694 B
SQL
14 lines
694 B
SQL
-- Table Definition ----------------------------------------------
|
|
|
|
CREATE TABLE accounts (
|
|
id SERIAL PRIMARY KEY,
|
|
reddit_account_id character varying(32) DEFAULT ''::character varying,
|
|
username character varying(20) DEFAULT ''::character varying UNIQUE,
|
|
access_token character varying(64) DEFAULT ''::character varying,
|
|
refresh_token character varying(64) DEFAULT ''::character varying,
|
|
token_expires_at timestamp without time zone,
|
|
last_message_id character varying(32) DEFAULT ''::character varying,
|
|
next_notification_check_at timestamp without time zone,
|
|
next_stuck_notification_check_at timestamp without time zone,
|
|
check_count integer DEFAULT 0
|
|
);
|