/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const QuickLink = sequelize.define("quickLink", { id: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: true, field: "id", autoIncrement: true, unique: "quick_link_id_uindex" }, userId: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "user_id", autoIncrement: false, references: { key: "id", model: "user" } }, link: { type: DataTypes.STRING, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "link", autoIncrement: false }, name: { type: DataTypes.STRING, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "name", autoIncrement: false } }, { tableName: "quick_link", comment: "", indexes: [] }); dc.models.QuickLink = QuickLink; return QuickLink; };