Bug 14633: Patch to control.ini to add or dependency to libapache2-mpm-itk
[koha.git] / Koha / Schema / Result / Reserveconstraint.pm
blob69d7a2b18de3c159961abe442f03e37ac01f8a00
1 use utf8;
2 package Koha::Schema::Result::Reserveconstraint;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Reserveconstraint
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<reserveconstraints>
20 =cut
22 __PACKAGE__->table("reserveconstraints");
24 =head1 ACCESSORS
26 =head2 borrowernumber
28 data_type: 'integer'
29 default_value: 0
30 is_nullable: 0
32 =head2 reservedate
34 data_type: 'date'
35 datetime_undef_if_invalid: 1
36 is_nullable: 1
38 =head2 biblionumber
40 data_type: 'integer'
41 default_value: 0
42 is_nullable: 0
44 =head2 biblioitemnumber
46 data_type: 'integer'
47 is_nullable: 1
49 =head2 timestamp
51 data_type: 'timestamp'
52 datetime_undef_if_invalid: 1
53 default_value: current_timestamp
54 is_nullable: 0
56 =cut
58 __PACKAGE__->add_columns(
59 "borrowernumber",
60 { data_type => "integer", default_value => 0, is_nullable => 0 },
61 "reservedate",
62 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
63 "biblionumber",
64 { data_type => "integer", default_value => 0, is_nullable => 0 },
65 "biblioitemnumber",
66 { data_type => "integer", is_nullable => 1 },
67 "timestamp",
69 data_type => "timestamp",
70 datetime_undef_if_invalid => 1,
71 default_value => \"current_timestamp",
72 is_nullable => 0,
77 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
78 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qsSPIwQxTBxw3s2a3hD34g
81 # You can replace this text with custom content, and it will be preserved on regeneration