users that follow trunk sometimes might wish to keep their database - but that's not possible if there are schema updates etc. no official patches are released, so i'd like to start this thread for that purpose.
and the first simple one:
revision 7207 changed schema to add per user configurable row count and dropdown options. if you had installed trunk, older than revision 7207 and you want to upgrade to trunk, revision 7207 or later, following patch might help:
save this as some file, then simply do 'mysql zabbix < somefile'
i'd appreciate pointing out of mistakes and maybe posting patches for future changes here
and the first simple one:
revision 7207 changed schema to add per user configurable row count and dropdown options. if you had installed trunk, older than revision 7207 and you want to upgrade to trunk, revision 7207 or later, following patch might help:
Code:
alter table users add rows_per_page integer default '50' NOT NULL; alter table config add dropdown_first_entry integer default '1' NOT NULL; alter table config add dropdown_first_remember integer default '1' NOT NULL;
i'd appreciate pointing out of mistakes and maybe posting patches for future changes here
Comment