Files
sonr/internal/dwn/models/orm.go
T

30 lines
427 B
Go
Raw Normal View History

2024-09-16 01:06:00 -04:00
package models
2024-09-14 12:47:25 -04:00
func (a *Account) Table() string {
return "accounts"
}
func (a *Asset) Table() string {
return "assets"
}
func (a *Credential) Table() string {
return "credentials"
}
func (a *Keyshare) Table() string {
return "keyshares"
}
func (a *Permission) Table() string {
return "permissions"
}
func (a *Profile) Table() string {
return "profiles"
}
func (a *Property) Table() string {
return "properties"
}