Lines 1-79
Link Here
|
1 |
package Koha::Schema::Result::Closure; |
|
|
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::Closure |
15 |
|
16 |
=cut |
17 |
|
18 |
__PACKAGE__->table("closure"); |
19 |
|
20 |
=head1 ACCESSORS |
21 |
|
22 |
=head2 closureid |
23 |
|
24 |
data_type: 'integer' |
25 |
is_auto_increment: 1 |
26 |
is_nullable: 0 |
27 |
|
28 |
=head2 description |
29 |
|
30 |
data_type: 'text' |
31 |
is_nullable: 1 |
32 |
|
33 |
=head2 branchcode |
34 |
|
35 |
data_type: 'varchar' |
36 |
is_nullable: 0 |
37 |
size: 10 |
38 |
|
39 |
=head2 title |
40 |
|
41 |
data_type: 'varchar' |
42 |
is_nullable: 1 |
43 |
size: 255 |
44 |
|
45 |
=head2 event_start |
46 |
|
47 |
data_type: 'datetime' |
48 |
is_nullable: 1 |
49 |
|
50 |
=head2 event_end |
51 |
|
52 |
data_type: 'datetime' |
53 |
is_nullable: 1 |
54 |
|
55 |
=cut |
56 |
|
57 |
__PACKAGE__->add_columns( |
58 |
"closureid", |
59 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
60 |
"description", |
61 |
{ data_type => "text", is_nullable => 1 }, |
62 |
"branchcode", |
63 |
{ data_type => "varchar", is_nullable => 0, size => 10 }, |
64 |
"title", |
65 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
66 |
"event_start", |
67 |
{ data_type => "datetime", is_nullable => 1 }, |
68 |
"event_end", |
69 |
{ data_type => "datetime", is_nullable => 1 }, |
70 |
); |
71 |
__PACKAGE__->set_primary_key("closureid"); |
72 |
|
73 |
|
74 |
# Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15 |
75 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yA2qWZ8+Om9n0UAev2wl1Q |
76 |
|
77 |
|
78 |
# You can replace this text with custom content, and it will be preserved on regeneration |
79 |
1; |