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-28 23:34:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fbcd62a0b4d9e7ff692d4b88a07685a1eccddb3c
fbcd62a0
1 parent
c6ce1e28
FIX: determine table charset and collate for korean
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
server/models/keyword.js
server/models/user.js
server/models/keyword.js
View file @
fbcd62a
...
...
@@ -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 @
fbcd62a
...
...
@@ -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