summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
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