Bug 15552: Better wording of intranetreadinghistory
[koha.git] / Koha / Schema / Result / SpecialHoliday.pm
blob45f884f87ad12e8198d3e44e10ce3a1ad5f5d97c
1 use utf8;
2 package Koha::Schema::Result::SpecialHoliday;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::SpecialHoliday
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<special_holidays>
20 =cut
22 __PACKAGE__->table("special_holidays");
24 =head1 ACCESSORS
26 =head2 id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 branchcode
34 data_type: 'varchar'
35 default_value: (empty string)
36 is_nullable: 0
37 size: 10
39 =head2 day
41 data_type: 'smallint'
42 default_value: 0
43 is_nullable: 0
45 =head2 month
47 data_type: 'smallint'
48 default_value: 0
49 is_nullable: 0
51 =head2 year
53 data_type: 'smallint'
54 default_value: 0
55 is_nullable: 0
57 =head2 isexception
59 data_type: 'smallint'
60 default_value: 1
61 is_nullable: 0
63 =head2 title
65 data_type: 'varchar'
66 default_value: (empty string)
67 is_nullable: 0
68 size: 50
70 =head2 description
72 data_type: 'text'
73 is_nullable: 0
75 =cut
77 __PACKAGE__->add_columns(
78 "id",
79 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
80 "branchcode",
81 { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
82 "day",
83 { data_type => "smallint", default_value => 0, is_nullable => 0 },
84 "month",
85 { data_type => "smallint", default_value => 0, is_nullable => 0 },
86 "year",
87 { data_type => "smallint", default_value => 0, is_nullable => 0 },
88 "isexception",
89 { data_type => "smallint", default_value => 1, is_nullable => 0 },
90 "title",
91 { data_type => "varchar", default_value => "", is_nullable => 0, size => 50 },
92 "description",
93 { data_type => "text", is_nullable => 0 },
96 =head1 PRIMARY KEY
98 =over 4
100 =item * L</id>
102 =back
104 =cut
106 __PACKAGE__->set_primary_key("id");
109 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
110 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mRo3D1nPRJsMY6hPxp/Ojg
113 # You can replace this text with custom content, and it will be preserved on regeneration