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

17 lines
476 B
JavaScript

module.exports = (sequelize, type) => {
const MiniMasterClassKaComplete = sequelize.define('mini_master_class_ka_completes', {
id: {
type: type.INTEGER,
primaryKey: true,
autoIncrement: true
},
ka_id: type.INTEGER,
user_id: type.INTEGER,
class_id: type.INTEGER,
status: {
type: type.INTEGER,
defaultValue: 0
}
})
return MiniMasterClassKaComplete;
}