aboutsummaryrefslogtreecommitdiff
path: root/bot/src/db/models/guild-settings.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/db/models/guild-settings.js')
-rw-r--r--bot/src/db/models/guild-settings.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/bot/src/db/models/guild-settings.js b/bot/src/db/models/guild-settings.js
new file mode 100644
index 0000000..c6bcaa4
--- /dev/null
+++ b/bot/src/db/models/guild-settings.js
@@ -0,0 +1,35 @@
+import { INTEGER, STRING, BOOLEAN } from 'sequelize';
+import { sequelize } from '../../utils/sequelize.js';
+
+export const guildSettings = sequelize.define('guild-settings', {
+ id: {
+ type: INTEGER,
+ primaryKey: true,
+ autoIncrement: true,
+ },
+ guildID: {
+ type: STRING,
+ allowNull: false
+ },
+ logChannelID: {
+ type: STRING,
+ allowNull: true
+ },
+ suggestionsChannelID: {
+ type: STRING,
+ allowNull: true
+ },
+ qotdChannelID: {
+ type: STRING,
+ allowNull: true
+ },
+ qotdToggle: {
+ type: BOOLEAN,
+ allowNull: true
+ },
+ ollamaEnabled: {
+ type: BOOLEAN,
+ allowNull: true
+ },
+
+});