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
With version 3 the package data_integration as been renamed to mara-pipelines but the internal tables are still named data_integration_*.
I suggest to rename the tables to pipeline_* in the next major version. For example data_integration_run would then get the name pipeline_run. The data could be moved to the new tables during db migration (needs to be implemented). For people still needing the old tables one could create SQL views (CREATE VIEW data_integration_run AS SELECT * FROM pipelines_run) to still be able to acces the table with their old name.
The text was updated successfully, but these errors were encountered:
With version 3 the package
data_integration
as been renamed tomara-pipelines
but the internal tables are still nameddata_integration_*
.I suggest to rename the tables to
pipeline_*
in the next major version. For exampledata_integration_run
would then get the namepipeline_run
. The data could be moved to the new tables during db migration (needs to be implemented). For people still needing the old tables one could create SQL views (CREATE VIEW data_integration_run AS SELECT * FROM pipelines_run
) to still be able to acces the table with their old name.The text was updated successfully, but these errors were encountered: