diff options
author | burnus%gmx.de <> | 2003-01-25 19:22:34 +0100 |
---|---|---|
committer | burnus%gmx.de <> | 2003-01-25 19:22:34 +0100 |
commit | d438a61fe304caf325b1e7e87a7853c372ef943b (patch) | |
tree | 8e30cc8550d39478ad81eee109514017aedd1f92 | |
parent | 4753a099436a5bd20adecfbb78478093c43f88b5 (diff) | |
download | bugzilla-d438a61fe304caf325b1e7e87a7853c372ef943b.tar.gz bugzilla-d438a61fe304caf325b1e7e87a7853c372ef943b.tar.xz |
Bug 190582 - quips table initial definition in checksetup.pl missing approved column
r,a=justdave
-rwxr-xr-x | checksetup.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index f2c1ef761..ee61522cb 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1725,7 +1725,8 @@ $table{bug_group_map} = $table{quips} = 'quipid mediumint not null auto_increment primary key, userid mediumint not null default 0, - quip text not null'; + quip text not null, + approved tinyint(1) not null default 1'; $table{group_control_map} = 'group_id mediumint not null, |