Bug 23435: Add multiple copies of an item when receiving in serials
[koha.git] / Koha / Schema / Result / CourseReserve.pm
1 use utf8;
2 package Koha::Schema::Result::CourseReserve;
3
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7 =head1 NAME
8
9 Koha::Schema::Result::CourseReserve
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<course_reserves>
19
20 =cut
21
22 __PACKAGE__->table("course_reserves");
23
24 =head1 ACCESSORS
25
26 =head2 cr_id
27
28   data_type: 'integer'
29   is_auto_increment: 1
30   is_nullable: 0
31
32 =head2 course_id
33
34   data_type: 'integer'
35   is_foreign_key: 1
36   is_nullable: 0
37
38 =head2 ci_id
39
40   data_type: 'integer'
41   is_foreign_key: 1
42   is_nullable: 0
43
44 =head2 staff_note
45
46   data_type: 'longtext'
47   is_nullable: 1
48
49 =head2 public_note
50
51   data_type: 'longtext'
52   is_nullable: 1
53
54 =head2 timestamp
55
56   data_type: 'timestamp'
57   datetime_undef_if_invalid: 1
58   default_value: current_timestamp
59   is_nullable: 0
60
61 =cut
62
63 __PACKAGE__->add_columns(
64   "cr_id",
65   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
66   "course_id",
67   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
68   "ci_id",
69   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
70   "staff_note",
71   { data_type => "longtext", is_nullable => 1 },
72   "public_note",
73   { data_type => "longtext", is_nullable => 1 },
74   "timestamp",
75   {
76     data_type => "timestamp",
77     datetime_undef_if_invalid => 1,
78     default_value => \"current_timestamp",
79     is_nullable => 0,
80   },
81 );
82
83 =head1 PRIMARY KEY
84
85 =over 4
86
87 =item * L</cr_id>
88
89 =back
90
91 =cut
92
93 __PACKAGE__->set_primary_key("cr_id");
94
95 =head1 UNIQUE CONSTRAINTS
96
97 =head2 C<pseudo_key>
98
99 =over 4
100
101 =item * L</course_id>
102
103 =item * L</ci_id>
104
105 =back
106
107 =cut
108
109 __PACKAGE__->add_unique_constraint("pseudo_key", ["course_id", "ci_id"]);
110
111 =head1 RELATIONS
112
113 =head2 ci
114
115 Type: belongs_to
116
117 Related object: L<Koha::Schema::Result::CourseItem>
118
119 =cut
120
121 __PACKAGE__->belongs_to(
122   "ci",
123   "Koha::Schema::Result::CourseItem",
124   { ci_id => "ci_id" },
125   { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
126 );
127
128 =head2 course
129
130 Type: belongs_to
131
132 Related object: L<Koha::Schema::Result::Course>
133
134 =cut
135
136 __PACKAGE__->belongs_to(
137   "course",
138   "Koha::Schema::Result::Course",
139   { course_id => "course_id" },
140   { is_deferrable => 1, on_delete => "RESTRICT", on_update => "RESTRICT" },
141 );
142
143
144 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
145 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8SDdUrbxKuAwp6rgn85RmA
146
147
148 # You can replace this text with custom content, and it will be preserved on regeneration
149 1;