Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

271 lines
4.7 KiB

use utf8;
package Koha::Schema::Result::OldIssue;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
Koha::Schema::Result::OldIssue
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<old_issues>
=cut
__PACKAGE__->table("old_issues");
=head1 ACCESSORS
=head2 issue_id
data_type: 'integer'
is_nullable: 0
=head2 borrowernumber
data_type: 'integer'
is_foreign_key: 1
is_nullable: 1
=head2 itemnumber
data_type: 'integer'
is_foreign_key: 1
is_nullable: 1
=head2 date_due
data_type: 'datetime'
datetime_undef_if_invalid: 1
is_nullable: 1
=head2 branchcode
data_type: 'varchar'
is_nullable: 1
size: 10
=head2 returndate
data_type: 'datetime'
datetime_undef_if_invalid: 1
is_nullable: 1
=head2 lastreneweddate
data_type: 'datetime'
datetime_undef_if_invalid: 1
is_nullable: 1
=head2 renewals
data_type: 'tinyint'
default_value: 0
is_nullable: 0
=head2 auto_renew
data_type: 'tinyint'
default_value: 0
is_nullable: 1
=head2 auto_renew_error
data_type: 'varchar'
is_nullable: 1
size: 32
=head2 timestamp
data_type: 'timestamp'
datetime_undef_if_invalid: 1
default_value: current_timestamp
is_nullable: 0
=head2 issuedate
data_type: 'datetime'
datetime_undef_if_invalid: 1
is_nullable: 1
=head2 onsite_checkout
data_type: 'integer'
default_value: 0
is_nullable: 0
=head2 note
data_type: 'longtext'
is_nullable: 1
=head2 notedate
data_type: 'datetime'
datetime_undef_if_invalid: 1
is_nullable: 1
=head2 noteseen
data_type: 'integer'
is_nullable: 1
=cut
__PACKAGE__->add_columns(
"issue_id",
{ data_type => "integer", is_nullable => 0 },
"borrowernumber",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
"itemnumber",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
"date_due",
{
data_type => "datetime",
datetime_undef_if_invalid => 1,
is_nullable => 1,
},
"branchcode",
{ data_type => "varchar", is_nullable => 1, size => 10 },
"returndate",
{
data_type => "datetime",
datetime_undef_if_invalid => 1,
is_nullable => 1,
},
"lastreneweddate",
{
data_type => "datetime",
datetime_undef_if_invalid => 1,
is_nullable => 1,
},
"renewals",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
"auto_renew",
{ data_type => "tinyint", default_value => 0, is_nullable => 1 },
"auto_renew_error",
{ data_type => "varchar", is_nullable => 1, size => 32 },
"timestamp",
{
data_type => "timestamp",
datetime_undef_if_invalid => 1,
default_value => \"current_timestamp",
is_nullable => 0,
},
"issuedate",
{
data_type => "datetime",
datetime_undef_if_invalid => 1,
is_nullable => 1,
},
"onsite_checkout",
{ data_type => "integer", default_value => 0, is_nullable => 0 },
"note",
{ data_type => "longtext", is_nullable => 1 },
"notedate",
{
data_type => "datetime",
datetime_undef_if_invalid => 1,
is_nullable => 1,
},
"noteseen",
{ data_type => "integer", is_nullable => 1 },
);
=head1 PRIMARY KEY
=over 4
=item * L</issue_id>
=back
=cut
__PACKAGE__->set_primary_key("issue_id");
=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 => "SET NULL",
on_update => "SET NULL",
},
);
=head2 itemnumber
Type: belongs_to
Related object: L<Koha::Schema::Result::Item>
=cut
__PACKAGE__->belongs_to(
"itemnumber",
"Koha::Schema::Result::Item",
{ itemnumber => "itemnumber" },
{
is_deferrable => 1,
join_type => "LEFT",
on_delete => "SET NULL",
on_update => "SET NULL",
},
);
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-10 19:55:44
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E2N2paWcCHg916100ry+2A
__PACKAGE__->add_columns(
'+auto_renew' => { is_boolean => 1 },
'+onsite_checkout' => { is_boolean => 1 }
);
__PACKAGE__->belongs_to(
"borrower",
"Koha::Schema::Result::Borrower",
{ borrowernumber => "borrowernumber" },
{ join_type => "LEFT", on_delete => "CASCADE", on_update => "CASCADE" },
);
__PACKAGE__->belongs_to(
"item",
"Koha::Schema::Result::Item",
{ itemnumber => "itemnumber" },
{
is_deferrable => 1,
join_type => "LEFT",
on_delete => "CASCADE",
on_update => "CASCADE",
},
);
sub koha_object_class {
'Koha::Old::Checkout';
}
sub koha_objects_class {
'Koha::Old::Checkouts';
}
1;