teldrive/pkg/models/session.go

13 lines
260 B
Go
Raw Normal View History

2023-11-02 21:51:30 +08:00
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())"`
}