aboutsummaryrefslogtreecommitdiff
path: root/bot/src/models/command-usages.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/models/command-usages.js')
-rw-r--r--bot/src/models/command-usages.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/bot/src/models/command-usages.js b/bot/src/models/command-usages.js
deleted file mode 100644
index a9dafa4..0000000
--- a/bot/src/models/command-usages.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import { INTEGER, STRING } from 'sequelize';
-import { sequelize } from '../utils/sequelize.js';
-
-export const commandUsages = sequelize.define('command-usages', {
- id: {
- type: INTEGER,
- autoIncrement: true,
- primaryKey: true
- },
- command: {
- type: STRING,
- allowNull: false
- },
- userID: {
- type: STRING,
- allowNull: false
- },
- guildID: {
- type: STRING,
- allowNull: true
- }
-
-}, {
- updatedAt: false,
-});
-