Files
lndhub.go/db/models/account.go

10 lines
226 B
Go

package models
// Account : Account Model
type Account struct {
ID int64 `bun:",pk,autoincrement"`
UserID int64 `bun:",notnull"`
User *User `bun:"rel:belongs-to,join:user_id=id"`
Type string `bun:",notnull"`
}