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

(-)a/Koha/Schema/Result/Illrequest.pm (-2 / +10 lines)
Lines 119-124 __PACKAGE__->table("illrequests"); Link Here
119
  is_nullable: 1
119
  is_nullable: 1
120
  size: 20
120
  size: 20
121
121
122
=head2 price_paid
123
124
  data_type: 'varchar'
125
  is_nullable: 1
126
  size: 20
127
122
=cut
128
=cut
123
129
124
__PACKAGE__->add_columns(
130
__PACKAGE__->add_columns(
Lines 164-169 __PACKAGE__->add_columns( Link Here
164
  { data_type => "varchar", is_nullable => 1, size => 50 },
170
  { data_type => "varchar", is_nullable => 1, size => 50 },
165
  "backend",
171
  "backend",
166
  { data_type => "varchar", is_nullable => 1, size => 20 },
172
  { data_type => "varchar", is_nullable => 1, size => 20 },
173
  "price_paid",
174
  { data_type => "varchar", is_nullable => 1, size => 20 },
167
);
175
);
168
176
169
=head1 PRIMARY KEY
177
=head1 PRIMARY KEY
Lines 231-238 __PACKAGE__->has_many( Link Here
231
);
239
);
232
240
233
241
234
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
242
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-05-17 10:53:41
235
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Rh8DSs3xj3KRmyd7WNGDAg
243
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lro5b6igadOasjToe90DIg
236
244
237
245
238
# You can replace this text with custom code or comments, and it will be preserved on regeneration
246
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Illrequestattribute.pm (-3 / +10 lines)
Lines 41-46 __PACKAGE__->table("illrequestattributes"); Link Here
41
  data_type: 'mediumtext'
41
  data_type: 'mediumtext'
42
  is_nullable: 0
42
  is_nullable: 0
43
43
44
=head2 readonly
45
46
  data_type: 'tinyint'
47
  default_value: 1
48
  is_nullable: 0
49
44
=cut
50
=cut
45
51
46
__PACKAGE__->add_columns(
52
__PACKAGE__->add_columns(
Lines 55-60 __PACKAGE__->add_columns( Link Here
55
  { data_type => "varchar", is_nullable => 0, size => 200 },
61
  { data_type => "varchar", is_nullable => 0, size => 200 },
56
  "value",
62
  "value",
57
  { data_type => "mediumtext", is_nullable => 0 },
63
  { data_type => "mediumtext", is_nullable => 0 },
64
  "readonly",
65
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
58
);
66
);
59
67
60
=head1 PRIMARY KEY
68
=head1 PRIMARY KEY
Lines 89-96 __PACKAGE__->belongs_to( Link Here
89
);
97
);
90
98
91
99
92
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
100
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-05-17 09:17:53
93
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:X9SxZP1PGXTwDJ6lUkx8Fg
101
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sFY1giVMz5AkXCPidhyGjw
94
102
95
103
96
# You can replace this text with custom code or comments, and it will be preserved on regeneration
104
# You can replace this text with custom code or comments, and it will be preserved on regeneration
97
- 

Return to bug 20772