summaryrefslogtreecommitdiff
path: root/server/models/Party.js
blob: 4cb1bf8f0a009e6292af080829678713b213b0c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 0 id  1 date
// 0 id  1 date  2 location

var db = require("../db"),
	Sequelize = require("sequelize");

var Party = db.sequelize.define('party', {
  date: Sequelize.STRING,
  location: Sequelize.STRING,
})

Party.sync()

module.exports = Party