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
Reviewing the current initial SQL dump (monarc-common.sql) and the overall structure, here is a series of recommendations (from short-term to long-term):
The initial database file should be separated in two parts: the schema creation from the data itself (two files should be create like monarc-common.sql - monarc-data.sql)
Consistency of description fields (what are the default constraints? NOT NULL or empty?)
What is the default type for description? text? longtext or varchar(255) this can have an impact on indexing
The current SQL dump is basically a raw dump and needs to be clean-up (initial AUTO_INCREMENT= values should not be there)
About the JSON files, I also like this idea (for the assets library). In fact, I just found and tested this: https://github.com/simonarnell/GDPRDPIAT
Interesting. Requirements for the GDPR are encoded in a JSON and used to generated a simple web form. Nice.
Reviewing the current initial SQL dump (monarc-common.sql) and the overall structure, here is a series of recommendations (from short-term to long-term):
The text was updated successfully, but these errors were encountered: