5efd30fe2b7c9b921baf8d92402fda0fad444c41
[koha_ffzg] / Koha / Schema / Result / AuthHeader.pm
1 package Koha::Schema::Result::AuthHeader;
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::AuthHeader
15
16 =cut
17
18 __PACKAGE__->table("auth_header");
19
20 =head1 ACCESSORS
21
22 =head2 authid
23
24   data_type: 'bigint'
25   extra: {unsigned => 1}
26   is_auto_increment: 1
27   is_nullable: 0
28
29 =head2 authtypecode
30
31   data_type: 'varchar'
32   default_value: (empty string)
33   is_nullable: 0
34   size: 10
35
36 =head2 datecreated
37
38   data_type: 'date'
39   is_nullable: 1
40
41 =head2 datemodified
42
43   data_type: 'date'
44   is_nullable: 1
45
46 =head2 origincode
47
48   data_type: 'varchar'
49   is_nullable: 1
50   size: 20
51
52 =head2 authtrees
53
54   data_type: 'mediumtext'
55   is_nullable: 1
56
57 =head2 marc
58
59   data_type: 'blob'
60   is_nullable: 1
61
62 =head2 linkid
63
64   data_type: 'bigint'
65   is_nullable: 1
66
67 =head2 marcxml
68
69   data_type: 'longtext'
70   is_nullable: 0
71
72 =cut
73
74 __PACKAGE__->add_columns(
75   "authid",
76   {
77     data_type => "bigint",
78     extra => { unsigned => 1 },
79     is_auto_increment => 1,
80     is_nullable => 0,
81   },
82   "authtypecode",
83   { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
84   "datecreated",
85   { data_type => "date", is_nullable => 1 },
86   "datemodified",
87   { data_type => "date", is_nullable => 1 },
88   "origincode",
89   { data_type => "varchar", is_nullable => 1, size => 20 },
90   "authtrees",
91   { data_type => "mediumtext", is_nullable => 1 },
92   "marc",
93   { data_type => "blob", is_nullable => 1 },
94   "linkid",
95   { data_type => "bigint", is_nullable => 1 },
96   "marcxml",
97   { data_type => "longtext", is_nullable => 0 },
98 );
99 __PACKAGE__->set_primary_key("authid");
100
101
102 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
103 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NVcyurExTIYMqdmRcU0hSA
104
105
106 # You can replace this text with custom content, and it will be preserved on regeneration
107 1;