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

22 lines
483 B
JavaScript

module.exports = (sequelize, type) => {
const FlashCardAns = sequelize.define('flash_card_ans', {
id: {
type: type.INTEGER,
primaryKey: true,
autoIncrement: true
},
user_id: type.INTEGER,
cource_id: type.INTEGER,
d_id: type.INTEGER,
user_res: type.INTEGER,
time_taken: type.INTEGER,
note_id: type.INTEGER,
mark: type.INTEGER,
cohort_id: {
type: type.INTEGER,
defaultValue: 0
}
})
return FlashCardAns;
}