bad.sql
application/octet-stream
Filename: bad.sql
Type: application/octet-stream
Part: 0
-- Table: history -- DROP TABLE history; DROP TABLE IF EXISTS history; CREATE TABLE history ( id serial NOT NULL, "name" character varying(255) NOT NULL, "desc" character varying(255), created_at timestamp without time zone NOT NULL, CONSTRAINT history_pkey PRIMARY KEY (id) );