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