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