summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-08-05 07:24:47 +0200
committerlpsolit%gmail.com <>2006-08-05 07:24:47 +0200
commit38c7d0766195d9d84fcd81bc23b9c71bff5bea6d (patch)
treef3688f465408bcccf98c6bf604b3023011dddd2b /checksetup.pl
parented12ad1849d654f8fb710d093c7aaf92f35e56ab (diff)
downloadbugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.gz
bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.xz
Bug 305941: Remove profiles.refreshed_when and groups.last_changed - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 4dad00ecd..c0b206bed 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -446,9 +446,8 @@ sub AddGroup {
print "Adding group $name ...\n";
my $sth = $dbh->prepare('INSERT INTO groups
- (name, description, userregexp, isbuggroup,
- last_changed)
- VALUES (?, ?, ?, ?, NOW())');
+ (name, description, userregexp, isbuggroup)
+ VALUES (?, ?, ?, ?)');
$sth->execute($name, $desc, $userregexp, 0);
my $last = $dbh->bz_last_key('groups', 'id');