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