UNPKG

synt_backend

Version:

Synt light-weight node backend service

28 lines (27 loc) 664 B
"use strict"; const { Model } = require("sequelize"); module.exports = (sequelize, DataTypes) => { class Yea extends Model { /** * Helper method for defining associations. * This method is not a part of Sequelize lifecycle. * The `models/index` file will call this method automatically. */ static associate(models) { // define association here this.belongsTo(models.User); } } Yea.init( { type: DataTypes.ENUM("docs", "terms", "privacy"), version: DataTypes.INTEGER.UNSIGNED, consent_given_at: DataTypes.DATE, }, { sequelize, modelName: "Yea", } ); return Yea; };