Newer
Older
percord / src / models / Emoji.ts
@Flam3rboy Flam3rboy on 22 Feb 2021 680 bytes Fix Member Model
import { Schema, model, Types, Document } from "mongoose";
import db from "../util/Database";

export interface Emoji extends Document {
	id: bigint;
	animated: boolean;
	available: boolean;
	guild_id: bigint;
	managed: boolean;
	name: string;
	require_colons: boolean;
	url: string;
	roles: bigint[]; // roles this emoji is whitelisted to
}

export const EmojiSchema = new Schema({
	id: { type: Types.Long, required: true },
	animated: Boolean,
	available: Boolean,
	guild_id: Types.Long,
	managed: Boolean,
	name: String,
	require_colons: Boolean,
	url: String,
	roles: [Types.Long],
});

// @ts-ignore
export const EmojiModel = db.model<Emoji>("Emoji", EmojiSchema, "emojis");