|
@@ -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.');
|