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

12 lines
316 B
JavaScript

module.exports = (sequelize, type) => {
const FlashappSync = sequelize.define('flashapp_sync', {
id: {
type: type.INTEGER,
primaryKey: true,
autoIncrement: true
},
UserId: type.INTEGER,
lastCardid: type.INTEGER
})
return FlashappSync;
}