Bug 8798: DBIx::Class base classes for all Koha tables
[koha_ffzg] / Koha / Schema / Result / LanguageDescription.pm
1 package Koha::Schema::Result::LanguageDescription;
2
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
5
6 use strict;
7 use warnings;
8
9 use base 'DBIx::Class::Core';
10
11
12 =head1 NAME
13
14 Koha::Schema::Result::LanguageDescription
15
16 =cut
17
18 __PACKAGE__->table("language_descriptions");
19
20 =head1 ACCESSORS
21
22 =head2 subtag
23
24   data_type: 'varchar'
25   is_nullable: 1
26   size: 25
27
28 =head2 type
29
30   data_type: 'varchar'
31   is_nullable: 1
32   size: 25
33
34 =head2 lang
35
36   data_type: 'varchar'
37   is_nullable: 1
38   size: 25
39
40 =head2 description
41
42   data_type: 'varchar'
43   is_nullable: 1
44   size: 255
45
46 =head2 id
47
48   data_type: 'integer'
49   is_auto_increment: 1
50   is_nullable: 0
51
52 =cut
53
54 __PACKAGE__->add_columns(
55   "subtag",
56   { data_type => "varchar", is_nullable => 1, size => 25 },
57   "type",
58   { data_type => "varchar", is_nullable => 1, size => 25 },
59   "lang",
60   { data_type => "varchar", is_nullable => 1, size => 25 },
61   "description",
62   { data_type => "varchar", is_nullable => 1, size => 255 },
63   "id",
64   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
65 );
66 __PACKAGE__->set_primary_key("id");
67
68
69 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
70 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WmYReEEJY/1M9lgDnNVZWA
71
72
73 # You can replace this text with custom content, and it will be preserved on regeneration
74 1;