1 2 3 4 5 6 7 8 9 10 11 12 13
var db = require("../db"), Sequelize = require("sequelize"); var UserParty = db.sequelize.define('user_party', { user_id: Sequelize.INTEGER, host_id: Sequelize.INTEGER, party_id: Sequelize.INTEGER, }) UserParty.sync() module.exports = UserParty