waveform/server/db/models/index.js
2019-04-13 18:24:41 -04:00

14 lines
275 B
JavaScript
Executable File

const Comment = require('./comment')
const Vote = require('./vote')
const User = require('./user')
Vote.belongsTo(Comment)
Comment.hasMany(Vote)
Vote.belongsTo(User)
User.hasMany(Vote)
Comment.belongsTo(User)
User.hasMany(Comment)
module.exports = { Comment, Vote, User }