Toggle navigation
Toggle navigation
This project
Loading...
Sign in
방승일
/
mamuri-bot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
유명현
2022-05-29 01:34:21 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
0a2481e5206d119ecd0d910f3b36c0ca2c69a571
0a2481e5
2 parents
2f143997
fe9e2966
Merge branch 'main' into feature/line-bot-refactor
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletions
server/config/config.json
server/models/keyword.js
server/models/user.js
server/config/config.json
View file @
0a2481e
...
...
@@ -5,7 +5,9 @@
"database"
:
"mamuri_db"
,
"host"
:
"mamuri-db"
,
"port"
:
"3306"
,
"dialect"
:
"mysql"
"dialect"
:
"mysql"
,
"charset"
:
"utf8"
,
"collate"
:
"utf8_general_ci"
},
"test"
:
{
"username"
:
"root"
,
...
...
server/models/keyword.js
View file @
0a2481e
...
...
@@ -10,5 +10,8 @@ module.exports = (sequelize, DataTypes) => {
type
:
DataTypes
.
STRING
,
allowNull
:
false
}
},
{
charset
:
"utf8"
,
collate
:
"utf8_general_ci"
})
}
\ No newline at end of file
...
...
server/models/user.js
View file @
0a2481e
...
...
@@ -10,5 +10,8 @@ module.exports = (sequelize, DataTypes) => {
type
:
DataTypes
.
STRING
,
allowNull
:
false
}
},
{
charset
:
"utf8"
,
collate
:
"utf8_general_ci"
})
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment