fix: merge migrations (#363)

* fix: merge migrations

* fix: rename env variable
This commit is contained in:
Fabi
2020-07-07 16:53:54 +02:00
committed by GitHub
parent c6e8597eeb
commit 5988ec4844
39 changed files with 672 additions and 828 deletions

View File

@@ -21,7 +21,7 @@ type IamMember struct {
}
const (
iamMemberTable = "admin_api.iam_members"
iamMemberTable = "adminapi.iam_members"
)
func (m *IamMember) MinimumCycleDuration() time.Duration { return m.cycleDuration }

View File

@@ -16,7 +16,7 @@ type Org struct {
}
const (
orgTable = "admin_api.orgs"
orgTable = "adminapi.orgs"
)
func (o *Org) MinimumCycleDuration() time.Duration { return o.cycleDuration }