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