diff options
author | mkanat%kerio.com <> | 2005-04-14 15:58:24 +0200 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-04-14 15:58:24 +0200 |
commit | 67752a4f62201f91212d81a927c8af6c799260f9 (patch) | |
tree | 447a3e19c867a30463238f96819529ce35bc60e5 /Bugzilla/DB | |
parent | a8302d335f48151dd16dfbae8cb63a2aa022b77b (diff) | |
download | bugzilla-67752a4f62201f91212d81a927c8af6c799260f9.tar.gz bugzilla-67752a4f62201f91212d81a927c8af6c799260f9.tar.xz |
Bug 289453: components.initialowner is different in Bugzilla::DB::Schema than it was in the old checksetup
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=Tomas.Kopal, a=justdave
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 3d008a09b..9ef1f6214 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -832,7 +832,7 @@ use constant ABSTRACT_SCHEMA => { PRIMARYKEY => 1}, name => {TYPE => 'varchar(64)', NOTNULL => 1}, product_id => {TYPE => 'INT2', NOTNULL => 1}, - initialowner => {TYPE => 'INT3'}, + initialowner => {TYPE => 'INT3', NOTNULL => 1}, initialqacontact => {TYPE => 'INT3'}, description => {TYPE => 'MEDIUMTEXT', NOTNULL => 1}, ], |