fix: use correct db schema (#4308)

This commit is contained in:
Livio Spring 2022-09-05 10:29:32 +02:00 committed by GitHub
parent 50bda00921
commit 279b487961
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import (
)
const (
errTable = "authz.failed_events"
errTable = "auth.failed_events"
)
func (v *View) saveFailedEvent(failedEvent *repository.FailedEvent) error {

View File

@ -8,7 +8,7 @@ import (
)
const (
sequencesTable = "authz.current_sequences"
sequencesTable = "auth.current_sequences"
)
func (v *View) saveCurrentSequence(viewName string, event *models.Event) error {