2021-02-14 22:33:31 -07:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-02-14 22:33:31 -07:00
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
package v1_14 //nolint
|
2021-02-14 22:33:31 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
func AddSessionTable(x *xorm.Engine) error {
|
2021-02-14 22:33:31 -07:00
|
|
|
type Session struct {
|
2021-04-13 18:04:17 -06:00
|
|
|
Key string `xorm:"pk CHAR(16)"`
|
|
|
|
Data []byte `xorm:"BLOB"`
|
|
|
|
Expiry timeutil.TimeStamp
|
2021-02-14 22:33:31 -07:00
|
|
|
}
|
|
|
|
return x.Sync2(new(Session))
|
|
|
|
}
|