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