diff options
Diffstat (limited to 'bot/src/models/guild-settings.js')
| -rw-r--r-- | bot/src/models/guild-settings.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/bot/src/models/guild-settings.js b/bot/src/models/guild-settings.js deleted file mode 100644 index bb4d30b..0000000 --- a/bot/src/models/guild-settings.js +++ /dev/null @@ -1,35 +0,0 @@ -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 - }, - -}); |
