Skip to content

Commit

Permalink
不要なカンマとセミコロンを削除
Browse files Browse the repository at this point in the history
  • Loading branch information
shigerix committed Jun 4, 2024
1 parent fabb874 commit cc182a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hackmd/lib/migrations/20230831234802-revision-add-index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';
'use strict'

module.exports = {
up: (queryInterface, Sequelize) => {
Expand All @@ -8,4 +8,4 @@ module.exports = {
down: (queryInterface, Sequelize) => {
return queryInterface.removeIndex('Revisions', 'noteId')
}
};
}
2 changes: 1 addition & 1 deletion lib/config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = {
dbURL: process.env.CMD_DB_URL,
db: {
pool: {
max: parseInt(process.env.DB_MAX_CONNECTION) },
max: parseInt(process.env.DB_MAX_CONNECTION) }
},
sessionSecret: process.env.CMD_SESSION_SECRET,
sessionLife: toIntegerConfig(process.env.CMD_SESSION_LIFE),
Expand Down

0 comments on commit cc182a3

Please sign in to comment.