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

(-)a/Koha/Schema/Result/RestrictionType.pm (-3 / +18 lines)
Lines 46-51 __PACKAGE__->table("restriction_types"); Link Here
46
  default_value: 0
46
  default_value: 0
47
  is_nullable: 0
47
  is_nullable: 0
48
48
49
=head2 lift_after_payment
50
51
  data_type: 'tinyint'
52
  default_value: 0
53
  is_nullable: 0
54
55
=head2 fee_limit
56
57
  data_type: 'decimal'
58
  is_nullable: 1
59
  size: [28,6]
60
49
=cut
61
=cut
50
62
51
__PACKAGE__->add_columns(
63
__PACKAGE__->add_columns(
Lines 57-62 __PACKAGE__->add_columns( Link Here
57
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
69
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
58
  "is_default",
70
  "is_default",
59
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
71
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
72
  "lift_after_payment",
73
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
74
  "fee_limit",
75
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
60
);
76
);
61
77
62
=head1 PRIMARY KEY
78
=head1 PRIMARY KEY
Lines 89-96 __PACKAGE__->has_many( Link Here
89
);
105
);
90
106
91
107
92
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-19 17:53:05
108
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-21 14:39:01
93
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CC8yZ6IqZPnySpMC5Mn/ig
109
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TelXb7sHcCGaTwkSnNN9TA
94
110
95
__PACKAGE__->add_columns(
111
__PACKAGE__->add_columns(
96
    '+is_system'  => { is_boolean => 1 },
112
    '+is_system'  => { is_boolean => 1 },
97
- 

Return to bug 16223