mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-06-16 02:19:08 +00:00
chore: prettier on server
This commit is contained in:
parent
3b0d249e41
commit
912b40c383
21 changed files with 589 additions and 501 deletions
|
@ -1,14 +1,15 @@
|
|||
module.exports = (sql, DataTypes) => {
|
||||
return sql.define('server', {
|
||||
id: { // discord snowflake
|
||||
id: {
|
||||
// discord snowflake
|
||||
type: DataTypes.TEXT,
|
||||
primaryKey: true
|
||||
primaryKey: true,
|
||||
},
|
||||
categories: {
|
||||
type: DataTypes.JSON
|
||||
type: DataTypes.JSON,
|
||||
},
|
||||
message: {
|
||||
type: DataTypes.TEXT
|
||||
}
|
||||
})
|
||||
}
|
||||
type: DataTypes.TEXT,
|
||||
},
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue