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

26 lines
683 B
JavaScript

module.exports = (sequelize, type) => {
const PracticeAppAns = sequelize.define('practiceapp_ans', {
id: {
type: type.INTEGER,
primaryKey: true,
autoIncrement: true
},
user_id: type.INTEGER,
domain_id: type.INTEGER,
que: type.INTEGER,
answer: type.INTEGER,
correct: type.INTEGER,
isreview: type.INTEGER,
active: type.INTEGER,
timestamp: type.TEXT,
status: {
type: type.INTEGER,
defaultValue: 0
},
cohort_id: {
type: type.INTEGER,
defaultValue: 0
}
})
return PracticeAppAns;
}