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:
parent
10649d4921
commit
c61c20bc8e
1 changed files with 12 additions and 2 deletions
|
@ -39,6 +39,14 @@ primary key
|
||||||
|
|
||||||
name of the processing
|
name of the processing
|
||||||
|
|
||||||
|
=head2 letter_code
|
||||||
|
|
||||||
|
data_type: 'varchar'
|
||||||
|
is_nullable: 1
|
||||||
|
size: 20
|
||||||
|
|
||||||
|
Foreign key to the letters table
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
__PACKAGE__->add_columns(
|
__PACKAGE__->add_columns(
|
||||||
|
@ -46,6 +54,8 @@ __PACKAGE__->add_columns(
|
||||||
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
|
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
|
||||||
"name",
|
"name",
|
||||||
{ data_type => "varchar", is_nullable => 0, size => 80 },
|
{ data_type => "varchar", is_nullable => 0, size => 80 },
|
||||||
|
"letter_code",
|
||||||
|
{ data_type => "varchar", is_nullable => 1, size => 20 },
|
||||||
);
|
);
|
||||||
|
|
||||||
=head1 PRIMARY KEY
|
=head1 PRIMARY KEY
|
||||||
|
@ -108,8 +118,8 @@ __PACKAGE__->has_many(
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47
|
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:58:35
|
||||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m7bHppTX3UpQY9CfmRPqQA
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fIZfFuAY21nh+Fwwjd/kJw
|
||||||
|
|
||||||
sub koha_object_class {
|
sub koha_object_class {
|
||||||
'Koha::Preservation::Processing';
|
'Koha::Preservation::Processing';
|
||||||
|
|
Loading…
Reference in a new issue