summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authordmose%mozilla.org <>2001-01-25 05:26:23 +0100
committerdmose%mozilla.org <>2001-01-25 05:26:23 +0100
commit88458a6565247863a96ea2f3a99f22c5d4a79a9e (patch)
treebb575858ab06c507d697d44b5bdde181b8f5f134 /checksetup.pl
parent63ececeb0b04265e63e777874f0dae99549ab75f (diff)
downloadbugzilla-88458a6565247863a96ea2f3a99f22c5d4a79a9e.tar.gz
bugzilla-88458a6565247863a96ea2f3a99f22c5d4a79a9e.tar.xz
patch from bug 17464 to give user some control over what sorts of bug mail get sent to an account. Original patch by al_raetz@yahoo.com and lots of additional hacking by me; r=donm@bluemartini.com
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl
index a0a729876..0b00bb470 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -748,6 +748,7 @@ $table{profiles} =
newemailtech tinyint not null,
mybugslink tinyint not null default 1,
blessgroupset bigint not null,
+ emailflags mediumtext,
unique(login_name)';
@@ -1868,6 +1869,13 @@ unless (-d 'graphs') {
}
}
+#
+# 2000-12-18. Added an 'emailflags' field for storing preferences about
+# when email gets sent on a per-user basis.
+#
+if (!GetFieldDef('profiles', 'emailflags')) {
+ AddField('profiles', 'emailflags', 'mediumtext');
+}
#
# If you had to change the --TABLE-- definition in any way, then add your