Add escaping to order statement

This commit is contained in:
Dan Sosedoff
2016-11-03 19:56:55 -05:00
parent 812aff9686
commit d0d84a62cd
3 changed files with 23 additions and 1 deletions

View File

@@ -17,6 +17,15 @@ CREATE DATABASE "booktown";
-- Name: DATABASE "booktown" Type: COMMENT Owner:
--
CREATE TABLE "dummies" (
"id" integer NOT NULL,
"isDummy" boolean
);
INSERT INTO "dummies" VALUES (1, true);
INSERT INTO "dummies" VALUES (2, true);
COMMENT ON DATABASE "booktown" IS 'The Book Town Database.';
--