diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-15 00:30:39 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-15 00:30:39 +0200 |
commit | e6ea9c3931636f5ebfb7877da18af28b221cdc58 (patch) | |
tree | 83537fc05c09d7480aeea0c5e21aeaeeab4c4f63 /template/en/default | |
parent | 0fd1b7d50b118d6f1ddaebce987e9cbd9748efa7 (diff) | |
download | bugzilla-e6ea9c3931636f5ebfb7877da18af28b221cdc58.tar.gz bugzilla-e6ea9c3931636f5ebfb7877da18af28b221cdc58.tar.xz |
Bug 578739: Instead of removing REFERENCES from _bz_real_schema and then
populating FKs from _bz_schema at the end of checksetup, store REFERENCES
in _bz_real_schema with a special "created => 0" key that tells us that
we still need to create the FK.
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index 849008adb..e20913a0e 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -95,7 +95,12 @@ [% ELSIF error == "chart_file_open_fail" %] Unable to open the chart datafile <tt>[% filename FILTER html %]</tt>. - + + [% ELSIF error == "column_alter_nonexistent_fk" %] + You attempted to modify the foreign key for + [%+ table FILTER html %].[% column FILTER html %], but there is + no foreign key on that column. + [% ELSIF error == "column_not_null_without_default" %] Failed adding the column [% name FILTER html %]: You cannot add a NOT NULL column with no default to an existing table |