Bug 21395: Fix creation of PO file
[koha.git] / Koha / Schema / Result / LanguageScriptBidi.pm
blob7272374da4a98bed973c0f9129cbdefffd4fa07d
1 use utf8;
2 package Koha::Schema::Result::LanguageScriptBidi;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::LanguageScriptBidi
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<language_script_bidi>
20 =cut
22 __PACKAGE__->table("language_script_bidi");
24 =head1 ACCESSORS
26 =head2 rfc4646_subtag
28 data_type: 'varchar'
29 is_nullable: 1
30 size: 25
32 =head2 bidi
34 data_type: 'varchar'
35 is_nullable: 1
36 size: 3
38 =cut
40 __PACKAGE__->add_columns(
41 "rfc4646_subtag",
42 { data_type => "varchar", is_nullable => 1, size => 25 },
43 "bidi",
44 { data_type => "varchar", is_nullable => 1, size => 3 },
48 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
49 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TBR2kCdB/nvEcdDo8I4rQA
52 # You can replace this text with custom content, and it will be preserved on regeneration