chore: ded

This commit is contained in:
cha0s 2020-12-13 05:47:15 -06:00
parent d65bb8fba4
commit 43cd34628d
2 changed files with 0 additions and 8 deletions

View File

@ -13,10 +13,6 @@ class Permission extends Model {
this.belongsToMany(User, {through: 'user_permissions'});
}
static get name() {
return 'Permission';
}
}
export default Permission;

View File

@ -19,10 +19,6 @@ class User extends Model {
this.belongsToMany(Permission, {through: 'user_permissions'});
}
static get name() {
return 'User';
}
}
export default User;