Skip to content

Commit ea4064c

Browse files
committed
removes some config values
1 parent b2a4356 commit ea4064c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Diff for: server/db/db.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ let config;
66
if (process.env.DATABASE_URL) {
77
config = {
88
logging: false,
9-
operatorsAliases: false,
10-
dialect: "postgres",
11-
protocol: "postgres",
129
ssl: true,
1310
dialectOptions: {
1411
ssl: {
@@ -19,8 +16,7 @@ if (process.env.DATABASE_URL) {
1916
}
2017
} else {
2118
config = {
22-
logging: false,
23-
operatorsAliases: false,
19+
logging: false
2420
}
2521
}
2622
const client = new Sequelize(dbUrl, config)

0 commit comments

Comments
 (0)