teldrive/pkg/models/session.go
2024-06-12 13:22:38 +05:30

13 lines
310 B
Go

package models
import (
"time"
)
type Session struct {
UserId int64 `gorm:"type:bigint;primaryKey"`
Hash string `gorm:"type:text"`
SessionDate int `gorm:"type:text"`
Session string `gorm:"type:text"`
CreatedAt time.Time `gorm:"default:timezone('utc'::text, now())"`
}