-
Notifications
You must be signed in to change notification settings - Fork 6
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
Implements versioned files for sirius biz #202
Conversation
Enables us to version e.g. javascript written jobs - Fixes: SE-4561
/** | ||
* Entity holding meta information about a versioned file. | ||
*/ | ||
@Explain("No need to override the equals method. Mapping and property can have the same name, this is sirius standard.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check settings - this should be suppressed anyway
/** | ||
* Entity holding meta information about a versioned file. | ||
*/ | ||
public class VersionedFile extends SQLTenantAware { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check via storage framework if active?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
still add a @framework(XXX) here so that the table isn't created if the framework isn't active.
also - shoudln't we move all this into a sub-package "versions" to not confuse it with VirtualObjectVersion(s)
this prevents the table from being created if the framwork is not active
Enables us to version e.g. javascript written jobs