WebCuratorTool / webcurator

The root of the webcurator tool project, containing all modules needed to run a fully functional webcurator tool.
Apache License 2.0
4 stars 1 forks source link

Missing updates upgrade scripts #14

Closed hannakoppelaar closed 4 years ago

hannakoppelaar commented 4 years ago

This PR adds four update statements to the upgrade scripts.

Apparently I had only looked at an existing id_generator table to determine which rows needed updating, but hibernate only creates a row in id_generator when it needs to generate a new key value. So id_generator is not guaranteed to contain all the rows that it may contain.

I've now simply gone through all the source files containing a TableGenerator annotation, so I'm confident the upgrade scripts are complete now.