Lines 39-47
primary key
Link Here
|
39 |
|
39 |
|
40 |
=head2 publication_title |
40 |
=head2 publication_title |
41 |
|
41 |
|
42 |
data_type: 'varchar' |
42 |
data_type: 'mediumtext' |
43 |
is_nullable: 1 |
43 |
is_nullable: 1 |
44 |
size: 255 |
|
|
45 |
|
44 |
|
46 |
=head2 external_id |
45 |
=head2 external_id |
47 |
|
46 |
|
Lines 123-131
primary key
Link Here
|
123 |
|
122 |
|
124 |
=head2 notes |
123 |
=head2 notes |
125 |
|
124 |
|
126 |
data_type: 'varchar' |
125 |
data_type: 'mediumtext' |
127 |
is_nullable: 1 |
126 |
is_nullable: 1 |
128 |
size: 255 |
|
|
129 |
|
127 |
|
130 |
=head2 publisher_name |
128 |
=head2 publisher_name |
131 |
|
129 |
|
Lines 175-181
primary key
Link Here
|
175 |
is_nullable: 1 |
173 |
is_nullable: 1 |
176 |
size: 255 |
174 |
size: 255 |
177 |
|
175 |
|
178 |
=head2 preceeding_publication_title_id |
176 |
=head2 preceding_publication_title_id |
179 |
|
177 |
|
180 |
data_type: 'varchar' |
178 |
data_type: 'varchar' |
181 |
is_nullable: 1 |
179 |
is_nullable: 1 |
Lines 195-201
__PACKAGE__->add_columns(
Link Here
|
195 |
"biblio_id", |
193 |
"biblio_id", |
196 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
194 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
197 |
"publication_title", |
195 |
"publication_title", |
198 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
196 |
{ data_type => "mediumtext", is_nullable => 1 }, |
199 |
"external_id", |
197 |
"external_id", |
200 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
198 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
201 |
"print_identifier", |
199 |
"print_identifier", |
Lines 223-229
__PACKAGE__->add_columns(
Link Here
|
223 |
"coverage_depth", |
221 |
"coverage_depth", |
224 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
222 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
225 |
"notes", |
223 |
"notes", |
226 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
224 |
{ data_type => "mediumtext", is_nullable => 1 }, |
227 |
"publisher_name", |
225 |
"publisher_name", |
228 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
226 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
229 |
"publication_type", |
227 |
"publication_type", |
Lines 240-246
__PACKAGE__->add_columns(
Link Here
|
240 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
238 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
241 |
"parent_publication_title_id", |
239 |
"parent_publication_title_id", |
242 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
240 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
243 |
"preceeding_publication_title_id", |
241 |
"preceding_publication_title_id", |
244 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
242 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
245 |
"access_type", |
243 |
"access_type", |
246 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
244 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
Lines 296-303
__PACKAGE__->has_many(
Link Here
|
296 |
); |
294 |
); |
297 |
|
295 |
|
298 |
|
296 |
|
299 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-22 11:41:06 |
297 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-09-13 11:06:45 |
300 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+DZRDExmVLe+MBtk+TEhJw |
298 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SOFpN45kBTi/qvW5OBnYDA |
301 |
|
299 |
|
302 |
sub koha_objects_class { |
300 |
sub koha_objects_class { |
303 |
'Koha::ERM::EHoldings::Titles'; |
301 |
'Koha::ERM::EHoldings::Titles'; |
304 |
- |
|
|