mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
![github-actions[bot]](/assets/img/avatar_default.png)
* Squash merge develop into master * feat: add automated production release workflow * feat: add Gitflow workflow for syncing branches * ci: update workflow runner to latest ubuntu version * feat: enable buf.build publishing on master and develop branches --------- Co-authored-by: Prad Nukala <prad@sonr.io>
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"
|
|
}
|