aboutsummaryrefslogtreecommitdiff
path: root/bot/src/db/models/command-usages.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-30 17:21:29 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-30 17:21:29 -0400
commitd37cc8c56cbf8c9ffe7023c671abe0d579ea875d (patch)
tree15dd5ba6bc8046017d78ff0186af0175850c612b /bot/src/db/models/command-usages.js
parent1662608835099ee3176d07d67c6a3c69f716f938 (diff)
downloadAleeBot-d37cc8c56cbf8c9ffe7023c671abe0d579ea875d.tar.gz
AleeBot-d37cc8c56cbf8c9ffe7023c671abe0d579ea875d.tar.bz2
AleeBot-d37cc8c56cbf8c9ffe7023c671abe0d579ea875d.zip
Moved models to the db folder
Diffstat (limited to 'bot/src/db/models/command-usages.js')
-rw-r--r--bot/src/db/models/command-usages.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/bot/src/db/models/command-usages.js b/bot/src/db/models/command-usages.js
new file mode 100644
index 0000000..21b4c86
--- /dev/null
+++ b/bot/src/db/models/command-usages.js
@@ -0,0 +1,26 @@
+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,
+});
+