mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
module.exports = (sql, DataTypes) => {
|
|
return sql.define('server', {
|
|
id: {
|
|
// discord snowflake
|
|
type: DataTypes.TEXT,
|
|
primaryKey: true,
|
|
},
|
|
categories: {
|
|
type: DataTypes.JSON,
|
|
},
|
|
message: {
|
|
type: DataTypes.TEXT,
|
|
},
|
|
})
|
|
}
|