/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const ProjectGraph = sequelize.define("projectGraph", { id: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: true, field: "id", autoIncrement: true, unique: "project_graph_id_uindex" }, projectId: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "project_id", autoIncrement: false }, graph: { type: DataTypes.STRING, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "graph", autoIncrement: false } }, { tableName: "project_graph", comment: "", indexes: [] }); dc.models.ProjectGraph = ProjectGraph; return ProjectGraph; };