Commit 6c313893 authored by John Crepezzi's avatar John Crepezzi
Browse files

Merge pull request #64 from lidl/master

Make table creation comment a one-liner.
parents ab029eae a8d4f3c3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3,8 +3,7 @@
var postgres = require('pg');
var winston = require('winston');

// create table entries (id SERIAL primary key, key varchar(255) not null, value text not null, expiration int);
// CREATE UNIQUE INDEX unique_key ON entries (key);
// create table entries (id serial primary key, key varchar(255) not null, value text not null, expiration int, unique(key));

// A postgres document store
var PostgresDocumentStore = function (options) {