We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c00c307 + 46ca4e3 commit a413812Copy full SHA for a413812
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@0ti.me/postgres-db-versioning",
3
- "version": "0.1.1",
+ "version": "0.1.2",
4
"description": "A library for managing PostgresDB migrations and initialization",
5
"license": "GPL-3.0",
6
"main": "src/index.js",
src/flow/describe-database.js
@@ -15,10 +15,7 @@ module.exports = context =>
15
version: getVersion(context).catch(err => {
16
if (
17
err.message ===
18
- `relation "${get(
19
- context,
20
- VERSIONS_TABLE_NAME,
21
- ).toLowerCase()}" does not exist`
+ `relation "${get(context, VERSIONS_TABLE_NAME)}" does not exist`
22
) {
23
return null;
24
} else {
0 commit comments