remove useless definition

This commit is contained in:
Wenkai Yin 2016-03-29 13:39:24 +08:00
parent 0812d2870c
commit 5b5b0593d7
1 changed files with 0 additions and 16 deletions

View File

@ -32,19 +32,3 @@ type Role struct {
RoleMask int `orm:"role_mask" json:"role_mask"`
}
/*
// ProjectRole holds information about the relationship of project and role.
type ProjectRole struct {
PrID int `orm:"column(pr_id)" json:"PrId"`
ProjectID int64 `orm:"column(project_id)" json:"ProjectId"`
RoleID int `orm:"column(role_id)" json:"RoleId"`
}
// UserProjectRole holds information about relationship of user, project and role.
type UserProjectRole struct {
UprID int `orm:"column(upr_id)" json:"UprId"`
UserID int `orm:"column(user_id)" json:"UserId"`
PrID int64 `orm:"column(pr_id)" json:"PrId"`
}
*/