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
I am using iseed to store specific settings table into production. My problem is that the order of the attributes changes every time I use iseed. I am already using "orderby" flag to make sure the order of elements does not change, but the attributs within each row seem to get a random order every time. Its a bit of a pain, because everytime I just change one row, essentially all rows +1000k lines will be changed.
This makes my commits unnecessarly large and the worst is, its hard to check and verify, if the reuqired change actually is in there.
Can I enfore one strict order of columns of the db fixed while using iseed (maybe alphabetically)?
The text was updated successfully, but these errors were encountered:
this->grammar->compileColumnListing()
"select column_name as `column_name` from information_schema.columns where table_schema = ? and table_name = ?"
Now, the above Mysql query returns the list of columns by A-Z order, which then being used to define the order of columns during select inside if condition with exclude option.
Actually if you don't use exclude, then you will never reach this line. so no need to exclude it. If I got you right, then columns are already sorted by A-Z order? I will observe future commits, I thought this was not the case.
I am using iseed to store specific settings table into production. My problem is that the order of the attributes changes every time I use iseed. I am already using "orderby" flag to make sure the order of elements does not change, but the attributs within each row seem to get a random order every time. Its a bit of a pain, because everytime I just change one row, essentially all rows +1000k lines will be changed.
This makes my commits unnecessarly large and the worst is, its hard to check and verify, if the reuqired change actually is in there.
Can I enfore one strict order of columns of the db fixed while using iseed (maybe alphabetically)?
The text was updated successfully, but these errors were encountered: