Bug 8798: DBIx::Class base classes for all Koha tables
[koha.git] / Koha / Schema / Result / ClosureRrule.pm
1 package Koha::Schema::Result::ClosureRrule;
2
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
5
6 use strict;
7 use warnings;
8
9 use base 'DBIx::Class::Core';
10
11
12 =head1 NAME
13
14 Koha::Schema::Result::ClosureRrule
15
16 =cut
17
18 __PACKAGE__->table("closure_rrule");
19
20 =head1 ACCESSORS
21
22 =head2 closureid
23
24   data_type: 'integer'
25   is_nullable: 1
26
27 =head2 recurrence_start
28
29   data_type: 'datetime'
30   is_nullable: 1
31
32 =head2 recurrence_end
33
34   data_type: 'datetime'
35   is_nullable: 1
36
37 =head2 frequency
38
39   data_type: 'varchar'
40   is_nullable: 1
41   size: 10
42
43 =head2 days_interval
44
45   data_type: 'integer'
46   is_nullable: 1
47
48 =cut
49
50 __PACKAGE__->add_columns(
51   "closureid",
52   { data_type => "integer", is_nullable => 1 },
53   "recurrence_start",
54   { data_type => "datetime", is_nullable => 1 },
55   "recurrence_end",
56   { data_type => "datetime", is_nullable => 1 },
57   "frequency",
58   { data_type => "varchar", is_nullable => 1, size => 10 },
59   "days_interval",
60   { data_type => "integer", is_nullable => 1 },
61 );
62
63
64 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
65 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:g4CMCw0JgKii7mgfHkqThQ
66
67
68 # You can replace this text with custom content, and it will be preserved on regeneration
69 1;