Lines 39-44
primary key
Link Here
|
39 |
|
39 |
|
40 |
name of the processing |
40 |
name of the processing |
41 |
|
41 |
|
|
|
42 |
=head2 letter_code |
43 |
|
44 |
data_type: 'varchar' |
45 |
is_nullable: 1 |
46 |
size: 20 |
47 |
|
48 |
Foreign key to the letters table |
49 |
|
42 |
=cut |
50 |
=cut |
43 |
|
51 |
|
44 |
__PACKAGE__->add_columns( |
52 |
__PACKAGE__->add_columns( |
Lines 46-51
__PACKAGE__->add_columns(
Link Here
|
46 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
54 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
47 |
"name", |
55 |
"name", |
48 |
{ data_type => "varchar", is_nullable => 0, size => 80 }, |
56 |
{ data_type => "varchar", is_nullable => 0, size => 80 }, |
|
|
57 |
"letter_code", |
58 |
{ data_type => "varchar", is_nullable => 1, size => 20 }, |
49 |
); |
59 |
); |
50 |
|
60 |
|
51 |
=head1 PRIMARY KEY |
61 |
=head1 PRIMARY KEY |
Lines 108-115
__PACKAGE__->has_many(
Link Here
|
108 |
); |
118 |
); |
109 |
|
119 |
|
110 |
|
120 |
|
111 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 |
121 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:58:35 |
112 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m7bHppTX3UpQY9CfmRPqQA |
122 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fIZfFuAY21nh+Fwwjd/kJw |
113 |
|
123 |
|
114 |
sub koha_object_class { |
124 |
sub koha_object_class { |
115 |
'Koha::Preservation::Processing'; |
125 |
'Koha::Preservation::Processing'; |
116 |
- |
|
|