123456789101112131415161718 |
- package models
- import "time"
- const (
- OT_GITHUB = iota + 1
- OT_GOOGLE
- OT_TWITTER
- )
- type Oauth2 struct {
- Uid int64 `xorm:"pk"`
- Type int `xorm:"pk unique(oauth)"`
- Identity string `xorm:"pk unique(oauth)"`
- Token string `xorm:"VARCHAR(200) not null"`
- RefreshTime time.Time `xorm:"created"`
- }
|