· 8 years ago · Jun 02, 2018, 02:00 AM
1DROP TABLE IF EXISTS submissions;
2
3CREATE TABLE submissions (
4 id char NOT NULL,
5 url char NOT NULL,
6 created_utc integer NOT NULL,
7 num_comments integer NOT NULL,
8 ups integer NOT NULL,
9 downs integer NOT NULL,
10 author char NOT NULL,
11 title char NOT NULL,
12 scraped char NOT NULL
13);