View | Details | Raw Unified | Return to bug 20644
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_20644-add_checkprevcheckout_to_items.pl (-2 / +1 lines)
Lines 11-17 return { Link Here
11
            $dbh->do(
11
            $dbh->do(
12
                q{
12
                q{
13
                ALTER TABLE itemtypes
13
                ALTER TABLE itemtypes
14
                ADD IF NOT EXISTS checkprevcheckout varchar(7) NOT NULL DEFAULT 'inherit' COMMENT 'produce a warning for a patron if a item of this type has previously been checked out to the same patron if ''yes'', not if ''no'', defer to category setting if ''inherit''.'
14
                ADD IF NOT EXISTS checkprevcheckout enum('yes', 'no', 'inherit') NOT NULL DEFAULT 'inherit' COMMENT 'produce a warning for a patron if a item of this type has previously been checked out to the same patron if ''yes'', not if ''no'', defer to category setting if ''inherit''.'
15
                AFTER automatic_checkin;
15
                AFTER automatic_checkin;
16
            }
16
            }
17
            );
17
            );
18
- 

Return to bug 20644