Browse Source

Bug 4461: DBIC Schema Files

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Martin Renvoize 4 years ago
parent
commit
dcc93ec356
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 19
      Koha/Schema/Result/Borrower.pm
  2. 19
      Koha/Schema/Result/Branch.pm
  3. 189
      Koha/Schema/Result/ProblemReport.pm

19
Koha/Schema/Result/Borrower.pm

@ -1327,6 +1327,21 @@ __PACKAGE__->might_have(
{ cascade_copy => 0, cascade_delete => 0 },
);
=head2 problem_reports
Type: has_many
Related object: L<Koha::Schema::Result::ProblemReport>
=cut
__PACKAGE__->has_many(
"problem_reports",
"Koha::Schema::Result::ProblemReport",
{ "foreign.borrowernumber" => "self.borrowernumber" },
{ cascade_copy => 0, cascade_delete => 0 },
);
=head2 ratings
Type: has_many
@ -1673,8 +1688,8 @@ Composing rels: L</aqorder_users> -> ordernumber
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-24 12:04:30
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Lc2beHgnH2egLaVzXEcLPg
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-01 09:42:50
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1G8678sy3UnvmJffzcU/Hg
__PACKAGE__->add_columns(
'+anonymized' => { is_boolean => 1 },

19
Koha/Schema/Result/Branch.pm

@ -638,6 +638,21 @@ __PACKAGE__->has_many(
{ cascade_copy => 0, cascade_delete => 0 },
);
=head2 problem_reports
Type: has_many
Related object: L<Koha::Schema::Result::ProblemReport>
=cut
__PACKAGE__->has_many(
"problem_reports",
"Koha::Schema::Result::ProblemReport",
{ "foreign.branchcode" => "self.branchcode" },
{ cascade_copy => 0, cascade_delete => 0 },
);
=head2 repeatable_holidays
Type: has_many
@ -744,8 +759,8 @@ __PACKAGE__->has_many(
);
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-25 09:27:24
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r2wn2GewgIc5+ShIdgmd9g
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-01 09:42:50
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OK9rj4bv4KW5if0kLRDTSg
__PACKAGE__->add_columns(
'+pickup_location' => { is_boolean => 1 }

189
Koha/Schema/Result/ProblemReport.pm

@ -0,0 +1,189 @@
use utf8;
package Koha::Schema::Result::ProblemReport;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
Koha::Schema::Result::ProblemReport
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<problem_reports>
=cut
__PACKAGE__->table("problem_reports");
=head1 ACCESSORS
=head2 reportid
data_type: 'integer'
is_auto_increment: 1
is_nullable: 0
=head2 title
data_type: 'varchar'
default_value: (empty string)
is_nullable: 0
size: 40
=head2 content
data_type: 'varchar'
default_value: (empty string)
is_nullable: 0
size: 255
=head2 borrowernumber
data_type: 'integer'
is_foreign_key: 1
is_nullable: 1
=head2 branchcode
data_type: 'varchar'
default_value: (empty string)
is_foreign_key: 1
is_nullable: 0
size: 10
=head2 username
data_type: 'varchar'
is_nullable: 1
size: 75
=head2 problempage
data_type: 'varchar'
is_nullable: 1
size: 255
=head2 recipient
data_type: 'enum'
default_value: 'library'
extra: {list => ["admin","library"]}
is_nullable: 0
=head2 created_on
data_type: 'timestamp'
datetime_undef_if_invalid: 1
default_value: current_timestamp
is_nullable: 0
=head2 status
data_type: 'varchar'
default_value: 'N'
is_nullable: 0
size: 1
=cut
__PACKAGE__->add_columns(
"reportid",
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
"title",
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 40 },
"content",
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
"borrowernumber",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
"branchcode",
{
data_type => "varchar",
default_value => "",
is_foreign_key => 1,
is_nullable => 0,
size => 10,
},
"username",
{ data_type => "varchar", is_nullable => 1, size => 75 },
"problempage",
{ data_type => "varchar", is_nullable => 1, size => 255 },
"recipient",
{
data_type => "enum",
default_value => "library",
extra => { list => ["admin", "library"] },
is_nullable => 0,
},
"created_on",
{
data_type => "timestamp",
datetime_undef_if_invalid => 1,
default_value => \"current_timestamp",
is_nullable => 0,
},
"status",
{ data_type => "varchar", default_value => "N", is_nullable => 0, size => 1 },
);
=head1 PRIMARY KEY
=over 4
=item * L</reportid>
=back
=cut
__PACKAGE__->set_primary_key("reportid");
=head1 RELATIONS
=head2 borrowernumber
Type: belongs_to
Related object: L<Koha::Schema::Result::Borrower>
=cut
__PACKAGE__->belongs_to(
"borrowernumber",
"Koha::Schema::Result::Borrower",
{ borrowernumber => "borrowernumber" },
{
is_deferrable => 1,
join_type => "LEFT",
on_delete => "CASCADE",
on_update => "CASCADE",
},
);
=head2 branchcode
Type: belongs_to
Related object: L<Koha::Schema::Result::Branch>
=cut
__PACKAGE__->belongs_to(
"branchcode",
"Koha::Schema::Result::Branch",
{ branchcode => "branchcode" },
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
);
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-11 08:28:15
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qVNVIuurFD6Q6p4YA5Kptg
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;
Loading…
Cancel
Save