Miao-Yunzai/plugins/genshin/model/db/index.js

12 lines
225 B
JavaScript
Raw Normal View History

import UserDB from './UserDB.js'
import MysUserDB from './MysUserDB.js'
UserDB.belongsToMany(MysUserDB, {
through: 'UserLtuids'
})
MysUserDB.belongsToMany(UserDB, {
through: 'UserLtuids'
})
export { UserDB, MysUserDB }