summary refs log tree commit diff
path: root/dist/models/Role.js
diff options
context:
space:
mode:
Diffstat (limited to 'dist/models/Role.js')
-rw-r--r--dist/models/Role.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/models/Role.js b/dist/models/Role.js
index ed681849..86c06db9 100644
--- a/dist/models/Role.js
+++ b/dist/models/Role.js
@@ -7,8 +7,8 @@ exports.RoleModel = exports.RoleSchema = void 0;
 const mongoose_1 = require("mongoose");
 const Database_1 = __importDefault(require("../util/Database"));
 exports.RoleSchema = new mongoose_1.Schema({
-    id: mongoose_1.Types.Long,
-    guild_id: mongoose_1.Types.Long,
+    id: String,
+    guild_id: String,
     color: Number,
     hoist: Boolean,
     managed: Boolean,
@@ -17,7 +17,7 @@ exports.RoleSchema = new mongoose_1.Schema({
     permissions: mongoose_1.Types.Long,
     position: Number,
     tags: {
-        bot_id: mongoose_1.Types.Long,
+        bot_id: String,
     },
 });
 // @ts-ignore