Skip to content
This repository was archived by the owner on Dec 23, 2020. It is now read-only.

Commit 6f52af5

Browse files
committed
Make table and column name use snake_case by default
1 parent bb93691 commit 6f52af5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export interface PGStorageConfiguration {
88
}
99

1010
const configDefaults: PGStorageConfiguration = {
11-
tableName: "SchemaMigration",
12-
columnName: "RevisionID"
11+
tableName: "schema_migration",
12+
columnName: "revision_id"
1313
};
1414

1515
export class PGStorage implements Storage {

0 commit comments

Comments
 (0)