Bug 21797: Update two-column templates with Bootstrap grid: Acquisitions part 5
[koha.git] / Koha / Schema / Result / Zebraqueue.pm
blob25e6bf9659bdef9fcd947302e6ef6299fcc27c1a
1 use utf8;
2 package Koha::Schema::Result::Zebraqueue;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Zebraqueue
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<zebraqueue>
20 =cut
22 __PACKAGE__->table("zebraqueue");
24 =head1 ACCESSORS
26 =head2 id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 biblio_auth_number
34 data_type: 'bigint'
35 default_value: 0
36 extra: {unsigned => 1}
37 is_nullable: 0
39 =head2 operation
41 data_type: 'char'
42 default_value: (empty string)
43 is_nullable: 0
44 size: 20
46 =head2 server
48 data_type: 'char'
49 default_value: (empty string)
50 is_nullable: 0
51 size: 20
53 =head2 done
55 data_type: 'integer'
56 default_value: 0
57 is_nullable: 0
59 =head2 time
61 data_type: 'timestamp'
62 datetime_undef_if_invalid: 1
63 default_value: current_timestamp
64 is_nullable: 0
66 =cut
68 __PACKAGE__->add_columns(
69 "id",
70 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
71 "biblio_auth_number",
73 data_type => "bigint",
74 default_value => 0,
75 extra => { unsigned => 1 },
76 is_nullable => 0,
78 "operation",
79 { data_type => "char", default_value => "", is_nullable => 0, size => 20 },
80 "server",
81 { data_type => "char", default_value => "", is_nullable => 0, size => 20 },
82 "done",
83 { data_type => "integer", default_value => 0, is_nullable => 0 },
84 "time",
86 data_type => "timestamp",
87 datetime_undef_if_invalid => 1,
88 default_value => \"current_timestamp",
89 is_nullable => 0,
93 =head1 PRIMARY KEY
95 =over 4
97 =item * L</id>
99 =back
101 =cut
103 __PACKAGE__->set_primary_key("id");
106 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
107 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vU9ROiVUwXc7jhKt728dRg
110 # You can replace this text with custom content, and it will be preserved on regeneration