Skip to content

Commit

Permalink
chore: disable running migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmontgomery committed Mar 1, 2024
1 parent 48bef2c commit 077d816
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/config/database.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import path from "path";

export default ({ env }) => ({
connection: {
client: "postgres",
Expand All @@ -14,6 +12,8 @@ export default ({ env }) => ({
rejectUnauthorized: env.bool("DATABASE_SSL_SELF", false),
},
},
debug: false,
runMigrations: false,
forceMigration: false,
debug: true,
},
});

0 comments on commit 077d816

Please sign in to comment.