瀏覽代碼

access_token

胡轶钦 6 年之前
父節點
當前提交
4963161057
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      models/model/sys_component_conf.go

+ 2
- 1
models/model/sys_component_conf.go 查看文件

@@ -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
 }