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

(-)a/Koha/Schema/Result/BorrowerAttributeType.pm (-2 / +2 lines)
Lines 176-183 __PACKAGE__->add_columns( Link Here
176
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
176
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
177
  "mandatory",
177
  "mandatory",
178
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
178
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
179
  "number",
179
    "number",
180
  { data_type => "int", is_nullable => 1 },
180
    { data_type => "int", is_nullable => 1 },
181
);
181
);
182
182
183
=head1 PRIMARY KEY
183
=head1 PRIMARY KEY
(-)a/installer/data/mysql/atomicupdate/bug_35145_order_patron_attributes.pl (-3 / +4 lines)
Lines 8-17 return { Link Here
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
9
10
        # Do you stuffs here
10
        # Do you stuffs here
11
        $dbh->do(q{
11
        $dbh->do(
12
            q{
12
            ALTER TABLE borrower_attribute_types
13
            ALTER TABLE borrower_attribute_types
13
            ADD number int(11);
14
            ADD number int(11);
14
        });
15
        }
16
        );
15
17
16
        # Print useful stuff here
18
        # Print useful stuff here
17
        # tables
19
        # tables
18
- 

Return to bug 35145