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

(-)a/installer/data/mysql/db_revs/220600022.pl (-3 / +2 lines)
Lines 57-63 return { Link Here
57
                CREATE TABLE `curbside_pickup_opening_slots` (
57
                CREATE TABLE `curbside_pickup_opening_slots` (
58
                    `id` INT(11) NOT NULL AUTO_INCREMENT,
58
                    `id` INT(11) NOT NULL AUTO_INCREMENT,
59
                    `curbside_pickup_policy_id` INT(11) NOT NULL,
59
                    `curbside_pickup_policy_id` INT(11) NOT NULL,
60
                    `day` INT(1) NOT NULL,
60
                    `day` TINYINT(1) NOT NULL,
61
                    `start_hour` INT(2) NOT NULL,
61
                    `start_hour` INT(2) NOT NULL,
62
                    `start_minute` INT(2) NOT NULL,
62
                    `start_minute` INT(2) NOT NULL,
63
                    `end_hour` INT(2) NOT NULL,
63
                    `end_hour` INT(2) NOT NULL,
Lines 182-188 return { Link Here
182
        unless ( column_exists('curbside_pickup_policy', 'enable_waiting_holds_only') ) {
182
        unless ( column_exists('curbside_pickup_policy', 'enable_waiting_holds_only') ) {
183
            $dbh->do(q{
183
            $dbh->do(q{
184
                ALTER table curbside_pickup_policy
184
                ALTER table curbside_pickup_policy
185
                ADD COLUMN enable_waiting_holds_only INT(1) NOT NULL DEFAULT 0 AFTER enabled
185
                ADD COLUMN enable_waiting_holds_only TINYINT(1) NOT NULL DEFAULT 0 AFTER enabled
186
            });
186
            });
187
        }
187
        }
188
    }
188
    }
189
- 

Return to bug 30650