From 158d9cbec0b37aec9b80c4205d02626f1021bd41 Mon Sep 17 00:00:00 2001 From: Patrick O'brien Date: Sat, 7 Jan 2017 00:48:39 +1000 Subject: [PATCH] remove commas from schema example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f01292..a272fc2 100644 --- a/README.md +++ b/README.md @@ -342,7 +342,7 @@ Most examples in this section will be demonstrated using the following Postgres ```sql CREATE TABLE pilots ( id integer NOT NULL, - name text NOT NULL, + name text NOT NULL ); ALTER TABLE pilots ADD CONSTRAINT pilot_pkey PRIMARY KEY (id); @@ -352,7 +352,7 @@ CREATE TABLE jets ( pilot_id integer NOT NULL, age integer NOT NULL, name text NOT NULL, - color text NOT NULL, + color text NOT NULL ); ALTER TABLE jets ADD CONSTRAINT jet_pkey PRIMARY KEY (id);