summaryrefslogtreecommitdiff
path: root/server/models/UserParty.js
blob: d28564bb75fec30785d017c01c5e4bff35b213bf (plain)
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