We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7332bfd commit f1cfb78Copy full SHA for f1cfb78
mysql.go
@@ -17,9 +17,9 @@ import (
17
type StoreItem struct {
18
ID int64 `db:"id,primarykey,autoincrement"`
19
ExpiredAt int64 `db:"expired_at"`
20
- Code string `db:"code,size:512"`
21
- Access string `db:"access,size:512"`
22
- Refresh string `db:"refresh,size:512"`
+ Code string `db:"code,size:255"`
+ Access string `db:"access,size:255"`
+ Refresh string `db:"refresh,size:255"`
23
Data string `db:"data,size:2048"`
24
}
25
0 commit comments