ms_app_log.ts 1.1 KB
/* jshint indent: 2 */

module.exports = function(sequelize:any, DataTypes:any) {
  return sequelize.define('ms_app_log', {
    id: {
      type: DataTypes.BIGINT,
      allowNull: false,
      primaryKey: true,
      autoIncrement: true
    },
    created_at: {
      type: DataTypes.DATE,
      allowNull: true
    },
    app_code: {
      type: DataTypes.STRING(50),
      allowNull: true
    },
    log_level: {
      type: DataTypes.STRING(50),
      allowNull: true
    },
    user_id: {
      type: DataTypes.BIGINT,
      allowNull: true
    },
    user_name: {
      type: DataTypes.STRING(50),
      allowNull: true
    },
    log_message: {
      type: DataTypes.TEXT,
      allowNull: true
    },
    log_data: {
      type: DataTypes.TEXT,
      allowNull: true
    },
    ip: {
      type: DataTypes.STRING(50),
      allowNull: true
    },
    header: {
      type: DataTypes.STRING(50),
      allowNull: true
    },
    app_version: {
      type: DataTypes.JSON,
      allowNull: true
    },
    log_path: {
      type: DataTypes.STRING(50),
      allowNull: true
    }
  }, {
    tableName: 'ms_app_log'
  });
};