mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-21 14:44:45 +01:00
10 lines
226 B
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"`
|
|
}
|