db: Fix expected schema version

This commit is contained in:
Tau
2019-05-29 14:04:55 -04:00
parent 2478bc5ceb
commit 7fd6f74986

View File

@@ -3,7 +3,7 @@ import { Pool, PoolClient } from "pg";
export type Id<T> = bigint & { __id: T };
const currentSchemaVer = 1;
const currentSchemaVer = 2;
const pool = new Pool();
const fence = testConnection();