diff options
author | 2006-08-05 05:24:47 +0000 | |
---|---|---|
committer | 2006-08-05 05:24:47 +0000 | |
commit | 38c7d0766195d9d84fcd81bc23b9c71bff5bea6d (patch) | |
tree | f3688f465408bcccf98c6bf604b3023011dddd2b /checksetup.pl | |
parent | Additional fix for bug 347360: No value returned when calling $flag_type->fla... (diff) | |
download | bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.gz bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.bz2 bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.zip |
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-x | checksetup.pl | 5 |
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'); |