From 7fd6f74986f914cf904e4c54a9ca6118b6c9727b Mon Sep 17 00:00:00 2001 From: Tau Date: Wed, 29 May 2019 14:04:55 -0400 Subject: [PATCH] db: Fix expected schema version --- src/db.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.ts b/src/db.ts index caad8f6..1e9a885 100644 --- a/src/db.ts +++ b/src/db.ts @@ -3,7 +3,7 @@ import { Pool, PoolClient } from "pg"; export type Id = bigint & { __id: T }; -const currentSchemaVer = 1; +const currentSchemaVer = 2; const pool = new Pool(); const fence = testConnection();