Bug 32257: Label for patron attributes misaligned
[koha-ffzg.git] / Koha / Schema / Result / LanguageScriptMapping.pm
1 use utf8;
2 package Koha::Schema::Result::LanguageScriptMapping;
3
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7 =head1 NAME
8
9 Koha::Schema::Result::LanguageScriptMapping
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<language_script_mapping>
19
20 =cut
21
22 __PACKAGE__->table("language_script_mapping");
23
24 =head1 ACCESSORS
25
26 =head2 language_subtag
27
28   data_type: 'varchar'
29   is_nullable: 0
30   size: 25
31
32 =head2 script_subtag
33
34   data_type: 'varchar'
35   is_nullable: 1
36   size: 25
37
38 =cut
39
40 __PACKAGE__->add_columns(
41   "language_subtag",
42   { data_type => "varchar", is_nullable => 0, size => 25 },
43   "script_subtag",
44   { data_type => "varchar", is_nullable => 1, size => 25 },
45 );
46
47 =head1 PRIMARY KEY
48
49 =over 4
50
51 =item * L</language_subtag>
52
53 =back
54
55 =cut
56
57 __PACKAGE__->set_primary_key("language_subtag");
58
59
60 # Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-02 07:13:00
61 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8pCxOS9p6qswA642MyRexA
62
63
64 # You can replace this text with custom content, and it will be preserved on regeneration
65 1;