mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
f9b9c595cf
* some tests * more tests * tidy up go.mod * more tests * add postgres * beep * again * Set up schema * fix device test
9 lines
331 B
SQL
9 lines
331 B
SQL
-- Table Definition ----------------------------------------------
|
|
|
|
CREATE TABLE subreddits (
|
|
id SERIAL PRIMARY KEY,
|
|
subreddit_id character varying(32) DEFAULT ''::character varying UNIQUE,
|
|
name character varying(32) DEFAULT ''::character varying,
|
|
last_checked_at double precision DEFAULT '0'::double precision
|
|
);
|
|
|