Browse Source

access_token

胡轶钦 6 years ago
parent
commit
4963161057
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      models/model/sys_component_conf.go

+ 2
- 1
models/model/sys_component_conf.go View File

@@ -8,6 +8,7 @@ type SysComponentConf struct {
8 8
 	Aeskey      string    `xorm:"VARCHAR(100)"`
9 9
 	Secret      string    `xorm:"VARCHAR(100)"`
10 10
 	Ticket      string    `xorm:"VARCHAR(100)"`
11
-	Token       string    `xorm:"VARCHAR(100)"`
11
+	Token       string    `xorm:"VARCHAR(500)"`
12 12
 	ExpiresDate time.Time `xorm:"DATETIME"`
13
+	AccessToken string    `xorm:"VARCHAR(500)"`
13 14
 }