OSDN Git Service

Modify access token db to sqldb
[bytom/vapor.git] / database / orm / accesstoken.go
1 package orm
2
3 import "time"
4
5 type AccessToken struct {
6         ID      string `gorm:"primary_key"`
7         Token   string
8         Type    string
9         Created time.Time
10 }