T_WordRank.js 1.2 KB
/* jshint indent: 2 */
module.exports = function (sequelize, DataTypes) {
    return sequelize.define('T_WordRank', {
        Location: {
            type: DataTypes.INTEGER(6),
            allowNull: true
        },
        Sex: {
            type: DataTypes.INTEGER(6),
            allowNull: true
        },
        Month: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        TeamId: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        TeamName: {
            type: DataTypes.STRING(30),
            allowNull: true
        },
        Rank: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        RankUp: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        Score: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        ScoreUp: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        Id: {
            type: DataTypes.INTEGER(11),
            allowNull: false,
            primaryKey: true,
            autoIncrement: true
        }
    }, {
        tableName: 'T_WordRank'
    });
};
//# sourceMappingURL=T_WordRank.js.map