module.exports = (sequelize, type) => { const AppSupport = sequelize.define('app_support', { id: { type: type.INTEGER, primaryKey: true, autoIncrement: true }, user_id: type.INTEGER, subject: type.TEXT, message: type.TEXT, app_type: type.TEXT, status: { type: type.INTEGER, defaultValue: 0 } }) return AppSupport; }