import Sequelize, { InferAttributes, InferCreationAttributes, Model } from "sequelize" import { sequelize } from "utils/Illegitimate" interface Verify extends Model, InferCreationAttributes> { userID: string uuid: string } const tag = sequelize.define("verify", { userID: { type: Sequelize.STRING, allowNull: false }, uuid: { type: Sequelize.STRING, allowNull: false } }) export default tag