Make table creation comment a one-liner.

This commit is contained in:
lidl 2014-06-27 18:40:05 -04:00
parent ab029eae2f
commit a8d4f3c300
1 changed files with 1 additions and 2 deletions

View File

@ -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) {