chore: db file compatibility (#228)

This commit is contained in:
kimatata
2025-05-25 10:13:57 +09:00
committed by GitHub
parent 13e0727914
commit 3475b3863c
5 changed files with 27 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
const path = require('path');
const databasePath = path.resolve(__dirname, '../../database/database.sqlite');
const databasePath = path.resolve(__dirname, '../database/database.sqlite');
module.exports = {
development: {
@@ -14,5 +14,5 @@ module.exports = {
production: {
dialect: 'sqlite',
storage: databasePath,
}
},
};