diff options
author | bryce-mozilla%nextbus.com <> | 1999-06-12 10:16:44 +0200 |
---|---|---|
committer | bryce-mozilla%nextbus.com <> | 1999-06-12 10:16:44 +0200 |
commit | 9b7fd7e1864b1d29949106bdbd5f200fe79eb646 (patch) | |
tree | a6ea4c276236a1fb7cbcc772db6e347937bd5027 /README | |
parent | d23872a045b1035e08f8292529c862aa10db8a4e (diff) | |
download | bugzilla-9b7fd7e1864b1d29949106bdbd5f200fe79eb646.tar.gz bugzilla-9b7fd7e1864b1d29949106bdbd5f200fe79eb646.tar.xz |
Give administrators a clue that upgrading is possible, even straightforward.
Diffstat (limited to 'README')
-rw-r--r-- | README | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -469,7 +469,17 @@ generally you want it to notice right away, so that you can test things. Appendix C. Upgrading from previous versions of BugZilla -[This section under construction]. +The developers of BugZilla are constantly adding new tables, columns and fields. +You'll get SQL errors if you just update the code. The strategy to update is +to read the CHANGES file backwards, and apply all of the instructions given, +typically things like: + + ./makeattachmenttable.sh + ./makegroupstable.sh + alter table products add column disallownew tinyint not null; + +Someday someone should write a script that queries the existing database +for all the required columns, and if any are missing, adds them. Appendix D. History |