Skip to content

Commit 0569257

Browse files
committed
1 parent 99586a7 commit 0569257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The two share the same interface so __no other code changes should be required__
3939
client.connect();
4040

4141
//queries are queued and executed one after another once the connection becomes available
42-
client.query("CREATE TEMP TABLE beatles(name varchar(10), height integer, birthday timestamps)");
42+
client.query("CREATE TEMP TABLE beatles(name varchar(10), height integer, birthday timestamptz)");
4343
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['Ringo', 67, new Date(1945, 11, 2)]);
4444
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['John', 68, new Date(1944, 10, 13)]);
4545

0 commit comments

Comments
 (0)