module.exports = (sequelize, type) => { const HybridSchedule = sequelize.define('hybrid_schedules', { id: { type: type.INTEGER, primaryKey: true, autoIncrement: true }, type: type.TEXT, cohort_id: type.INTEGER, type_id: type.INTEGER, due_date: type.TEXT, overdue_date: type.TEXT, required: type.INTEGER, due_number: type.TEXT, overdue_number: type.TEXT, homework: type.INTEGER, seq_number: type.INTEGER, title_name: type.TEXT, title_type: type.TEXT, download_description: type.TEXT, download_url: type.TEXT, }) return HybridSchedule; }