Bug 14633: Patch to control.ini to add or dependency to libapache2-mpm-itk
[koha.git] / Koha / Schema / Result / Notify.pm
blob9be1b2a2838e6c2bbce21240d9a396416ee232a4
1 use utf8;
2 package Koha::Schema::Result::Notify;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Notify
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<notifys>
20 =cut
22 __PACKAGE__->table("notifys");
24 =head1 ACCESSORS
26 =head2 notify_id
28 data_type: 'integer'
29 default_value: 0
30 is_nullable: 0
32 =head2 borrowernumber
34 data_type: 'integer'
35 default_value: 0
36 is_nullable: 0
38 =head2 itemnumber
40 data_type: 'integer'
41 default_value: 0
42 is_nullable: 0
44 =head2 notify_date
46 data_type: 'date'
47 datetime_undef_if_invalid: 1
48 is_nullable: 1
50 =head2 notify_send_date
52 data_type: 'date'
53 datetime_undef_if_invalid: 1
54 is_nullable: 1
56 =head2 notify_level
58 data_type: 'integer'
59 default_value: 0
60 is_nullable: 0
62 =head2 method
64 data_type: 'varchar'
65 default_value: (empty string)
66 is_nullable: 0
67 size: 20
69 =cut
71 __PACKAGE__->add_columns(
72 "notify_id",
73 { data_type => "integer", default_value => 0, is_nullable => 0 },
74 "borrowernumber",
75 { data_type => "integer", default_value => 0, is_nullable => 0 },
76 "itemnumber",
77 { data_type => "integer", default_value => 0, is_nullable => 0 },
78 "notify_date",
79 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
80 "notify_send_date",
81 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
82 "notify_level",
83 { data_type => "integer", default_value => 0, is_nullable => 0 },
84 "method",
85 { data_type => "varchar", default_value => "", is_nullable => 0, size => 20 },
89 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
90 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sQc1HF4rGwsMBh6uFNKUnQ
93 # You can replace this text with custom content, and it will be preserved on regeneration