· 7 years ago · Jan 05, 2019, 02:12 PM
1DROP TABLE IF EXISTS score;
2
3CREATE TABLE scores (
4 id integer NOT NULL,
5 submission_time character varying(255) NOT NULL,
6 score integer NOT NULL,
7 name character varying(255) NOT NULL,
8);