Bug 21797: Update two-column templates with Bootstrap grid: Acquisitions part 5
[koha.git] / Koha / Schema / Result / Aqcontract.pm
blob564d78ff2e8e2e42286994e5774d1bfad7e2ce09
1 use utf8;
2 package Koha::Schema::Result::Aqcontract;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Aqcontract
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<aqcontract>
20 =cut
22 __PACKAGE__->table("aqcontract");
24 =head1 ACCESSORS
26 =head2 contractnumber
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 contractstartdate
34 data_type: 'date'
35 datetime_undef_if_invalid: 1
36 is_nullable: 1
38 =head2 contractenddate
40 data_type: 'date'
41 datetime_undef_if_invalid: 1
42 is_nullable: 1
44 =head2 contractname
46 data_type: 'varchar'
47 is_nullable: 1
48 size: 50
50 =head2 contractdescription
52 data_type: 'longtext'
53 is_nullable: 1
55 =head2 booksellerid
57 data_type: 'integer'
58 is_foreign_key: 1
59 is_nullable: 0
61 =cut
63 __PACKAGE__->add_columns(
64 "contractnumber",
65 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
66 "contractstartdate",
67 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
68 "contractenddate",
69 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
70 "contractname",
71 { data_type => "varchar", is_nullable => 1, size => 50 },
72 "contractdescription",
73 { data_type => "longtext", is_nullable => 1 },
74 "booksellerid",
75 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
78 =head1 PRIMARY KEY
80 =over 4
82 =item * L</contractnumber>
84 =back
86 =cut
88 __PACKAGE__->set_primary_key("contractnumber");
90 =head1 RELATIONS
92 =head2 aqbaskets
94 Type: has_many
96 Related object: L<Koha::Schema::Result::Aqbasket>
98 =cut
100 __PACKAGE__->has_many(
101 "aqbaskets",
102 "Koha::Schema::Result::Aqbasket",
103 { "foreign.contractnumber" => "self.contractnumber" },
104 { cascade_copy => 0, cascade_delete => 0 },
107 =head2 booksellerid
109 Type: belongs_to
111 Related object: L<Koha::Schema::Result::Aqbookseller>
113 =cut
115 __PACKAGE__->belongs_to(
116 "booksellerid",
117 "Koha::Schema::Result::Aqbookseller",
118 { id => "booksellerid" },
119 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
123 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
124 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ar69aHSxYQohZDQ+GtIIqA
127 # You can replace this text with custom content, and it will be preserved on regeneration