Bug 21395: Fix creation of PO file
[koha.git] / Koha / Schema / Result / Tag.pm
blob321d2e9b27bb3b5d2ce1eeb1b0c85bfc59ce3b56
1 use utf8;
2 package Koha::Schema::Result::Tag;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Tag
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<tags>
20 =cut
22 __PACKAGE__->table("tags");
24 =head1 ACCESSORS
26 =head2 entry
28 data_type: 'varchar'
29 default_value: (empty string)
30 is_nullable: 0
31 size: 255
33 =head2 weight
35 data_type: 'bigint'
36 default_value: 0
37 is_nullable: 0
39 =cut
41 __PACKAGE__->add_columns(
42 "entry",
43 { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
44 "weight",
45 { data_type => "bigint", default_value => 0, is_nullable => 0 },
48 =head1 PRIMARY KEY
50 =over 4
52 =item * L</entry>
54 =back
56 =cut
58 __PACKAGE__->set_primary_key("entry");
61 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
62 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oXXMdTe9zYBblKs7SE8uPg
65 # You can replace this text with custom content, and it will be preserved on regeneration