12 lines
316 B
JavaScript
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;
|
|
} |