What is the criteria for tables inside 000, 001, 002...011 in sqlmigration? #7176
-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @ohyoona, Migrations till number 9 have been picked verbatim from various older and disorganized parts of the codebase. For instance, While we agree the current migration names do not accurately reflect what is happening in the migration, our plan is to now add sensible and understandable migrations on top of it. |
Beta Was this translation helpful? Give feedback.
Hi @ohyoona,
As part of our efforts to streamline, re-architect, re-design, revamp our codebase architecture, we have decided to put all our sql migrations at one place.
Migrations till number 9 have been picked verbatim from various older and disorganized parts of the codebase. For instance,
add_dashboards
migrations was taken from the now removeddashboards.InitDB
function which was unfortunately adding other tables as well. Since we picked it from thedashboards
module, we decided to name itadd_dashboards
.While we agree the current migration names do not accurately reflect what is happening in the migration, our plan is to now add sensible and understandable migrations on top of it.