From f0994fd9a724c1605ca08d903b785a7b3af38db5 Mon Sep 17 00:00:00 2001 From: Josh Harvey Date: Mon, 23 May 2016 14:23:37 +0300 Subject: [PATCH] fix migrations bug --- migrations/010-cached-requests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/010-cached-requests.js b/migrations/010-cached-requests.js index fd6ee693..4dfb0e41 100644 --- a/migrations/010-cached-requests.js +++ b/migrations/010-cached-requests.js @@ -10,7 +10,7 @@ exports.up = function (next) { 'path text NOT NULL, ' + 'method text NOT NULL, ' + 'body json NOT NULL, ' + - 'created timestampz NOT NULL DEFAULT now(), ' + + 'created timestamptz NOT NULL DEFAULT now(), ' + 'UNIQUE (device_fingerprint, session_id, path, method) ' + ')', next) }