Browse Source

Missing semi-colon

Patrick Falls 12 years ago
parent
commit
1aff2d0adf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      config/create-postgres.sql

+ 2 - 2
config/create-postgres.sql

@@ -3,7 +3,7 @@ CREATE TABLE  World (
   id integer NOT NULL,
   randomNumber integer NOT NULL default 0,
   PRIMARY KEY  (id)
-)
+);
 
 INSERT INTO World (id, randomNumber)
 SELECT x.id, random() * 10000 + 1 FROM generate_series(1,10000) as x(id);
@@ -13,7 +13,7 @@ CREATE TABLE  Fortune (
   id integer NOT NULL,
   message varchar(2048) NOT NULL,
   PRIMARY KEY  (id)
-)
+);
 
 INSERT INTO fortune (id, message) VALUES (1, 'fortune: No such file or directory');
 INSERT INTO fortune (id, message) VALUES (2, 'A computer scientist is someone who fixes things that aren''t broken.');