Skip to content

Commit a413812

Browse files
authored
Merge 46ca4e3 into c00c307
2 parents c00c307 + 46ca4e3 commit a413812

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@0ti.me/postgres-db-versioning",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "A library for managing PostgresDB migrations and initialization",
55
"license": "GPL-3.0",
66
"main": "src/index.js",

src/flow/describe-database.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ module.exports = context =>
1515
version: getVersion(context).catch(err => {
1616
if (
1717
err.message ===
18-
`relation "${get(
19-
context,
20-
VERSIONS_TABLE_NAME,
21-
).toLowerCase()}" does not exist`
18+
`relation "${get(context, VERSIONS_TABLE_NAME)}" does not exist`
2219
) {
2320
return null;
2421
} else {

0 commit comments

Comments
 (0)