mirror of
https://github.com/tgdrive/teldrive.git
synced 2024-11-10 17:14:03 +08:00
15 lines
401 B
Go
15 lines
401 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type User struct {
|
|
UserId int `gorm:"type:int;primaryKey"`
|
|
Name string `gorm:"type:text"`
|
|
UserName string `gorm:"type:text"`
|
|
IsPremium bool `gorm:"type:bool"`
|
|
TgSession string `gorm:"type:text"`
|
|
UpdatedAt time.Time `gorm:"default:timezone('utc'::text, now())"`
|
|
CreatedAt time.Time `gorm:"default:timezone('utc'::text, now())"`
|
|
}
|