fix: drop unused column from current_sequences (#1592)

This commit is contained in:
Livio Amstutz
2021-04-16 06:54:29 +02:00
committed by GitHub
parent 6a3a541848
commit 26e1b80c1c
8 changed files with 33 additions and 16 deletions

View File

@@ -32,9 +32,6 @@ func (v *View) updateSpoolerRunSequence(viewName string) error {
currentSequence.ViewName = viewName
}
currentSequence.LastSuccessfulSpoolerRun = time.Now()
//update all aggregate types
//TODO: not sure if all scenarios work as expected
currentSequence.AggregateType = ""
return repository.UpdateCurrentSequence(v.Db, sequencesTable, currentSequence)
}