Bug 12558: DBIx::Class schema update 07/2014
[koha.git] / Koha / Schema / Result / Review.pm
1 use utf8;
2 package Koha::Schema::Result::Review;
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::Review
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<reviews>
19
20 =cut
21
22 __PACKAGE__->table("reviews");
23
24 =head1 ACCESSORS
25
26 =head2 reviewid
27
28   data_type: 'integer'
29   is_auto_increment: 1
30   is_nullable: 0
31
32 =head2 borrowernumber
33
34   data_type: 'integer'
35   is_foreign_key: 1
36   is_nullable: 1
37
38 =head2 biblionumber
39
40   data_type: 'integer'
41   is_foreign_key: 1
42   is_nullable: 1
43
44 =head2 review
45
46   data_type: 'text'
47   is_nullable: 1
48
49 =head2 approved
50
51   data_type: 'tinyint'
52   is_nullable: 1
53
54 =head2 datereviewed
55
56   data_type: 'datetime'
57   datetime_undef_if_invalid: 1
58   is_nullable: 1
59
60 =cut
61
62 __PACKAGE__->add_columns(
63   "reviewid",
64   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
65   "borrowernumber",
66   { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
67   "biblionumber",
68   { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
69   "review",
70   { data_type => "text", is_nullable => 1 },
71   "approved",
72   { data_type => "tinyint", is_nullable => 1 },
73   "datereviewed",
74   {
75     data_type => "datetime",
76     datetime_undef_if_invalid => 1,
77     is_nullable => 1,
78   },
79 );
80
81 =head1 PRIMARY KEY
82
83 =over 4
84
85 =item * L</reviewid>
86
87 =back
88
89 =cut
90
91 __PACKAGE__->set_primary_key("reviewid");
92
93 =head1 RELATIONS
94
95 =head2 biblionumber
96
97 Type: belongs_to
98
99 Related object: L<Koha::Schema::Result::Biblio>
100
101 =cut
102
103 __PACKAGE__->belongs_to(
104   "biblionumber",
105   "Koha::Schema::Result::Biblio",
106   { biblionumber => "biblionumber" },
107   {
108     is_deferrable => 1,
109     join_type     => "LEFT",
110     on_delete     => "CASCADE",
111     on_update     => "CASCADE",
112   },
113 );
114
115 =head2 borrowernumber
116
117 Type: belongs_to
118
119 Related object: L<Koha::Schema::Result::Borrower>
120
121 =cut
122
123 __PACKAGE__->belongs_to(
124   "borrowernumber",
125   "Koha::Schema::Result::Borrower",
126   { borrowernumber => "borrowernumber" },
127   {
128     is_deferrable => 1,
129     join_type     => "LEFT",
130     on_delete     => "SET NULL",
131     on_update     => "CASCADE",
132   },
133 );
134
135
136 # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
137 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:u+R08bCdVQA697aPo9zEUA
138
139
140 # You can replace this text with custom content, and it will be preserved on regeneration
141 1;