mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-23 10:45:16 +00:00
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8422 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
19 lines
364 B
Go
19 lines
364 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_14
|
|
|
|
import (
|
|
"forgejo.org/modules/timeutil"
|
|
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func AddSessionTable(x *xorm.Engine) error {
|
|
type Session struct {
|
|
Key string `xorm:"pk CHAR(16)"`
|
|
Data []byte `xorm:"BLOB"`
|
|
Expiry timeutil.TimeStamp
|
|
}
|
|
return x.Sync(new(Session))
|
|
}
|