aboutsummaryrefslogtreecommitdiff
path: root/bot/src/models
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/models')
-rw-r--r--bot/src/models/guild-settings.js28
1 files changed, 18 insertions, 10 deletions
diff --git a/bot/src/models/guild-settings.js b/bot/src/models/guild-settings.js
index 81cfbc2..bb4d30b 100644
--- a/bot/src/models/guild-settings.js
+++ b/bot/src/models/guild-settings.js
@@ -1,4 +1,4 @@
-import { INTEGER, STRING } from 'sequelize';
+import { INTEGER, STRING, BOOLEAN } from 'sequelize';
import { sequelize } from '../utils/sequelize.js';
export const guildSettings = sequelize.define('guild-settings', {
@@ -14,14 +14,22 @@ export const guildSettings = sequelize.define('guild-settings', {
logChannelID: {
type: STRING,
allowNull: true
- }
- // qotdChannelID: {
- // type: Sequelize.STRING,
- // allowNull: true
- // },
- // qotdToggle: {
- // type: Sequelize.BOOLEAN,
- // allowNull: true
- // }
+ },
+ suggestionsChannelID: {
+ type: STRING,
+ allowNull: true
+ },
+ qotdChannelID: {
+ type: STRING,
+ allowNull: true
+ },
+ qotdToggle: {
+ type: BOOLEAN,
+ allowNull: true
+ },
+ ollamaEnabled: {
+ type: BOOLEAN,
+ allowNull: true
+ },
});