This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
summer-utils/tables/oauth/domain.go
2023-04-16 11:56:17 +01:00

12 lines
173 B
Go

package oauth
type Domain struct {
DomainId uint64 `xorm:"pk autoincr"`
AppId uint64
Domain string
}
func (d Domain) TableName() string {
return "oauth_domain"
}