diff options
Diffstat (limited to 'bot/src/db/models/warn.js')
| -rw-r--r-- | bot/src/db/models/warn.js | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/bot/src/db/models/warn.js b/bot/src/db/models/warn.js new file mode 100644 index 0000000..d766238 --- /dev/null +++ b/bot/src/db/models/warn.js @@ -0,0 +1,42 @@ +import { INTEGER, STRING } from 'sequelize'; +import { sequelize } from '../../utils/sequelize.js'; + +export const warnSettings = sequelize.define('warn-settings', { + id: { + type: INTEGER, + primaryKey: true, + autoIncrement: true, + }, + guildID: { + type: STRING, + allowNull: false + }, + strikes: { + type: STRING, + allowNull: false + }, + punishment: { + type: STRING, + allowNull: false + } +}); + +export const warnLog = sequelize.define('warn-log', { + id: { + type: INTEGER, + primaryKey: true, + autoIncrement: true, + }, + guildID: { + type: STRING, + allowNull: false + }, + userID: { + type: STRING, + allowNull: false + }, + reason: { + type: STRING, + allowNull: false + } +}); |
