ms_soccer_company.js 1.1 KB
/* jshint indent: 2 */
module.exports = function (sequelize, DataTypes) {
    return sequelize.define('ms_soccer_company', {
        ms_company_id: {
            type: DataTypes.INTEGER(11),
            allowNull: false,
            primaryKey: true,
            autoIncrement: true
        },
        createdAt: {
            type: DataTypes.DATE,
            allowNull: true
        },
        updatedAt: {
            type: DataTypes.DATE,
            allowNull: true
        },
        info_company_id: {
            type: DataTypes.BIGINT,
            allowNull: true
        },
        sportdt_company_id: {
            type: DataTypes.BIGINT,
            allowNull: true
        },
        info_company_name: {
            type: DataTypes.STRING(100),
            allowNull: true
        },
        sportdt_company_name: {
            type: DataTypes.STRING(100),
            allowNull: true
        },
        info_company_type: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        }
    }, {
        tableName: 'ms_soccer_company'
    });
};
//# sourceMappingURL=ms_soccer_company.js.map