team_rank_fifa_women.js 943 字节
/* jshint indent: 2 */
module.exports = function (sequelize, DataTypes) {
    return sequelize.define('team_rank_fifa_women', {
        id: {
            type: DataTypes.INTEGER(11),
            allowNull: false,
            primaryKey: true,
            autoIncrement: true
        },
        pub_time: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        pub_times: {
            type: DataTypes.JSON,
            allowNull: true
        },
        items: {
            type: DataTypes.JSON,
            allowNull: true
        },
        updated_at: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        created_at: {
            type: DataTypes.DATE,
            allowNull: false,
            defaultValue: sequelize.literal('CURRENT_TIMESTAMP')
        }
    }, {
        tableName: 'team_rank_fifa_women'
    });
};
//# sourceMappingURL=team_rank_fifa_women.js.map