mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-05 06:43:12 +08:00
12 lines
260 B
Go
12 lines
260 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Session struct {
|
|
UserId int64 `gorm:"type:bigint;primaryKey"`
|
|
Hash string `gorm:"type:text"`
|
|
Session string `gorm:"type:text"`
|
|
CreatedAt time.Time `gorm:"default:timezone('utc'::text, now())"`
|
|
}
|