LMS/E-Learning-Backend-main/app/models/Flashans_offline.js
2025-09-01 19:37:35 +05:30

24 lines
622 B
JavaScript

module.exports = (sequelize, type) => {
const FlashAnsOffline = sequelize.define('flashans_offline', {
id: {
type: type.INTEGER,
primaryKey: true,
autoIncrement: true
},
UserId: type.INTEGER,
cid: type.INTEGER,
domain: type.INTEGER,
user_res: type.INTEGER,
time_taken: {
type: type.INTEGER,
defaultValue: 0
},
notes: type.INTEGER,
mark: type.INTEGER,
cohort_id: {
type: type.INTEGER,
defaultValue: 0
}
})
return FlashAnsOffline;
}