Huh. I wonder how that happened... I just looked over the upgrade code and those changes should have been added. Hmm! This is a bit worrying. Anyone else encountered the same problem?
I'd just add the new fields manually via phpMyAdmin or whatever database management you're using. The order of the columns isn't important, but I'd suggest adding them in the order specified in the SQL code I posted for consistency.
The only new fields are:
view_filters table:
filter_type enum('standard', 'client_map') NOT NULL default 'standard'
views table:
has_client_map_filter enum('yes','no') NOT NULL default 'no'
has_standard_filter enum('yes','no') NOT NULL default 'no'
Let me know how it goes.
If this is pretty new to you, back up the database first just in case (it never hurts and it can be a real life-saver sometimes!)
- Ben
I'd just add the new fields manually via phpMyAdmin or whatever database management you're using. The order of the columns isn't important, but I'd suggest adding them in the order specified in the SQL code I posted for consistency.
The only new fields are:
view_filters table:
filter_type enum('standard', 'client_map') NOT NULL default 'standard'
views table:
has_client_map_filter enum('yes','no') NOT NULL default 'no'
has_standard_filter enum('yes','no') NOT NULL default 'no'
Let me know how it goes.
If this is pretty new to you, back up the database first just in case (it never hurts and it can be a real life-saver sometimes!)
- Ben