mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
30 lines
424 B
Go
30 lines
424 B
Go
package orm
|
|
|
|
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"
|
|
}
|