diff --git a/pkg/models/list.go b/pkg/models/list.go index 719e7c0d10..8b68dcdd9d 100644 --- a/pkg/models/list.go +++ b/pkg/models/list.go @@ -431,13 +431,11 @@ func CreateOrUpdateList(list *List) (err error) { colsToUpdate := []string{ "title", "is_archived", + "identifier", } if list.Description != "" { colsToUpdate = append(colsToUpdate, "description") } - if list.Identifier != "" { - colsToUpdate = append(colsToUpdate, "identifier") - } if list.HexColor != "" { colsToUpdate = append(colsToUpdate, "hex_color") }