Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 99f405d

Browse files
Do not create db during migration. Assume it is already created
1 parent 6b36be7 commit 99f405d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/db/migrations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function getUmzug () {
2525

2626
(async () => {
2727
if (process.argv[2] === 'up') {
28-
createDb()
28+
// createDb()
2929
await getUmzug().up()
3030
console.log('All migrations performed successfully')
3131
} else if (process.argv[2] === 'down') {

0 commit comments

Comments
 (0)