-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
versioning of data #337
Comments
This cannot be fully achieved within the current project. Generally speaking this is possible - by hand. A user interface would be too complicated. In emergency situations @MGlauer can recover old versions, but this can only be a last resort and is not meant to be a regular service so far. For the time being there should be a notice somewhere communicating as much. RequirementSpecificationID=62 |
May this be a potential use-case? |
There will be a notice describing the current state. There will be no specific interface to access different versions (yet). |
Firstly, we could simply implement the advice/notice mentioned in the comments above As this is relevant again and we have talked about versioning on several occasions. Currently our revision system is in operation. It keeps track of all user transactions (all C-R-UD changes) and stores them in a schema called, for example, "_model_draft" if the original table is in "model_draft". If a user then creates, updates or deletes data in the table, the changes are saved as a delta. To go one step further and calculate the versions of it, we would need a system that can track the changes related to a version. This type of solution is relatively complex, especially since our current data publishing workflow would allow for a simpler solution: The user has to upload the data while it is in the theme / schema model_draft. For this reason, I think we could create a new version every time the user publishes the data. That is, it would be necessary to provide an "upload new version" button or something else next to a "published" table. Then we only need to track the new upload & save the previous version and don't need to calculate the deltas for each version. This solution seems simpler to me, but may not be mature enough yet. There may also be other advantages if we choose the more complex solution. |
As a user, I want to access old versions of data if I accidentally entered something wrong.
The text was updated successfully, but these errors were encountered: