You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several collections have sequential_number fields.
These are currently incremented and set in the backend code.
It would be nice to alter the SQL schema such that these values are instead generated/incremented on DB level, most likely using sequences.
We have to ensure that these sequences are initialized correctly (i.e. max(<collection>.sequential_number)). This would be part of the corresponding migration in the backend.
The text was updated successfully, but these errors were encountered:
Several collections have
sequential_number
fields.These are currently incremented and set in the backend code.
It would be nice to alter the SQL schema such that these values are instead generated/incremented on DB level, most likely using sequences.
We have to ensure that these sequences are initialized correctly (i.e.
max(<collection>.sequential_number)
). This would be part of the corresponding migration in the backend.The text was updated successfully, but these errors were encountered: