Bug 20434: Update UNIMARC framework - auth (SAUTTIT)
[koha.git] / Koha / Schema / Result / LanguageDescription.pm
blobaed9cb67ec89d048cc1088a532d3b220ec215d61
1 use utf8;
2 package Koha::Schema::Result::LanguageDescription;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::LanguageDescription
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<language_descriptions>
20 =cut
22 __PACKAGE__->table("language_descriptions");
24 =head1 ACCESSORS
26 =head2 subtag
28 data_type: 'varchar'
29 is_nullable: 1
30 size: 25
32 =head2 type
34 data_type: 'varchar'
35 is_nullable: 1
36 size: 25
38 =head2 lang
40 data_type: 'varchar'
41 is_nullable: 1
42 size: 25
44 =head2 description
46 data_type: 'varchar'
47 is_nullable: 1
48 size: 255
50 =head2 id
52 data_type: 'integer'
53 is_auto_increment: 1
54 is_nullable: 0
56 =cut
58 __PACKAGE__->add_columns(
59 "subtag",
60 { data_type => "varchar", is_nullable => 1, size => 25 },
61 "type",
62 { data_type => "varchar", is_nullable => 1, size => 25 },
63 "lang",
64 { data_type => "varchar", is_nullable => 1, size => 25 },
65 "description",
66 { data_type => "varchar", is_nullable => 1, size => 255 },
67 "id",
68 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
71 =head1 PRIMARY KEY
73 =over 4
75 =item * L</id>
77 =back
79 =cut
81 __PACKAGE__->set_primary_key("id");
84 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
85 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fQEN7ks3f7aLuoDQWqEv+Q
88 # You can replace this text with custom content, and it will be preserved on regeneration