apollo-backend/migrations/000004_create_subreddits.up.sql

10 lines
310 B
MySQL
Raw Normal View History

-- 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,
2022-05-21 17:08:30 +00:00
next_check_at timestamp without time zone
);