Bug 33547: DBIC schema changes

Sponsored-by: BULAC - http://www.bulac.fr/

Signed-off-by: BULAC - http://www.bulac.fr/
Signed-off-by: Heather Hernandez <heather_hernandez@nps.gov>
Signed-off-by: Laurence Rault <laurence.rault@biblibre.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Jonathan Druart 2023-04-17 20:59:07 +02:00 committed by Tomas Cohen Arazi
parent 10649d4921
commit c61c20bc8e
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -39,6 +39,14 @@ primary key
name of the processing
=head2 letter_code
data_type: 'varchar'
is_nullable: 1
size: 20
Foreign key to the letters table
=cut
__PACKAGE__->add_columns(
@ -46,6 +54,8 @@ __PACKAGE__->add_columns(
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
"name",
{ data_type => "varchar", is_nullable => 0, size => 80 },
"letter_code",
{ data_type => "varchar", is_nullable => 1, size => 20 },
);
=head1 PRIMARY KEY
@ -108,8 +118,8 @@ __PACKAGE__->has_many(
);
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m7bHppTX3UpQY9CfmRPqQA
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:58:35
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fIZfFuAY21nh+Fwwjd/kJw
sub koha_object_class {
'Koha::Preservation::Processing';