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

(-)a/Koha/Schema/Result/BorrowerAttributeType.pm (-3 / +10 lines)
Lines 90-95 __PACKAGE__->table("borrower_attribute_types"); Link Here
90
  is_nullable: 0
90
  is_nullable: 0
91
  size: 255
91
  size: 255
92
92
93
=head2 mandatory
94
95
  data_type: 'tinyint'
96
  default_value: 0
97
  is_nullable: 0
98
93
=cut
99
=cut
94
100
95
__PACKAGE__->add_columns(
101
__PACKAGE__->add_columns(
Lines 115-120 __PACKAGE__->add_columns( Link Here
115
  { data_type => "varchar", is_nullable => 1, size => 10 },
121
  { data_type => "varchar", is_nullable => 1, size => 10 },
116
  "class",
122
  "class",
117
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
123
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
124
  "mandatory",
125
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
118
);
126
);
119
127
120
=head1 PRIMARY KEY
128
=head1 PRIMARY KEY
Lines 162-169 __PACKAGE__->has_many( Link Here
162
);
170
);
163
171
164
172
165
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-25 20:32:12
173
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-03 13:48:05
166
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gsPR8PuUUZHFUkr3MIbTpw
174
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+gaC4iMv0bphNEflh7Sm5w
167
175
168
sub koha_object_class {
176
sub koha_object_class {
169
    'Koha::Patron::Attribute::Type';
177
    'Koha::Patron::Attribute::Type';
170
- 

Return to bug 22844