Bug 10565: (follow-up) refresh DBIC schema class files
[koha.git] / Koha / Schema / Result / Nozebra.pm
1 package Koha::Schema::Result::Nozebra;
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::Nozebra
15
16 =cut
17
18 __PACKAGE__->table("nozebra");
19
20 =head1 ACCESSORS
21
22 =head2 server
23
24   data_type: 'varchar'
25   is_nullable: 0
26   size: 20
27
28 =head2 indexname
29
30   data_type: 'varchar'
31   is_nullable: 0
32   size: 40
33
34 =head2 value
35
36   data_type: 'varchar'
37   is_nullable: 0
38   size: 250
39
40 =head2 biblionumbers
41
42   data_type: 'longtext'
43   is_nullable: 0
44
45 =cut
46
47 __PACKAGE__->add_columns(
48   "server",
49   { data_type => "varchar", is_nullable => 0, size => 20 },
50   "indexname",
51   { data_type => "varchar", is_nullable => 0, size => 40 },
52   "value",
53   { data_type => "varchar", is_nullable => 0, size => 250 },
54   "biblionumbers",
55   { data_type => "longtext", is_nullable => 0 },
56 );
57
58
59 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
60 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HEbJLtO1Tpyvy9/w8dnS2w
61
62
63 # You can replace this text with custom content, and it will be preserved on regeneration
64 1;