View | Details | Raw Unified | Return to bug 30888
Collapse All | Expand All

(-)a/Koha/Schema/Result/DeletedauthHeader.pm (-1 / +124 lines)
Line 0 Link Here
0
- 
1
use utf8;
2
package Koha::Schema::Result::DeletedauthHeader;
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::DeletedauthHeader
10
11
=cut
12
13
use strict;
14
use warnings;
15
16
use base 'DBIx::Class::Core';
17
18
=head1 TABLE: C<deletedauth_header>
19
20
=cut
21
22
__PACKAGE__->table("deletedauth_header");
23
24
=head1 ACCESSORS
25
26
=head2 authid
27
28
  data_type: 'bigint'
29
  extra: {unsigned => 1}
30
  is_nullable: 0
31
32
=head2 authtypecode
33
34
  data_type: 'varchar'
35
  default_value: (empty string)
36
  is_nullable: 0
37
  size: 10
38
39
=head2 datecreated
40
41
  data_type: 'date'
42
  datetime_undef_if_invalid: 1
43
  is_nullable: 1
44
45
=head2 modification_time
46
47
  data_type: 'timestamp'
48
  datetime_undef_if_invalid: 1
49
  default_value: current_timestamp
50
  is_nullable: 0
51
52
=head2 origincode
53
54
  data_type: 'varchar'
55
  is_nullable: 1
56
  size: 20
57
58
=head2 authtrees
59
60
  data_type: 'longtext'
61
  is_nullable: 1
62
63
=head2 marc
64
65
  data_type: 'blob'
66
  is_nullable: 1
67
68
=head2 linkid
69
70
  data_type: 'bigint'
71
  is_nullable: 1
72
73
=head2 marcxml
74
75
  data_type: 'longtext'
76
  is_nullable: 0
77
78
=cut
79
80
__PACKAGE__->add_columns(
81
  "authid",
82
  { data_type => "bigint", extra => { unsigned => 1 }, is_nullable => 0 },
83
  "authtypecode",
84
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
85
  "datecreated",
86
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
87
  "modification_time",
88
  {
89
    data_type => "timestamp",
90
    datetime_undef_if_invalid => 1,
91
    default_value => \"current_timestamp",
92
    is_nullable => 0,
93
  },
94
  "origincode",
95
  { data_type => "varchar", is_nullable => 1, size => 20 },
96
  "authtrees",
97
  { data_type => "longtext", is_nullable => 1 },
98
  "marc",
99
  { data_type => "blob", is_nullable => 1 },
100
  "linkid",
101
  { data_type => "bigint", is_nullable => 1 },
102
  "marcxml",
103
  { data_type => "longtext", is_nullable => 0 },
104
);
105
106
=head1 PRIMARY KEY
107
108
=over 4
109
110
=item * L</authid>
111
112
=back
113
114
=cut
115
116
__PACKAGE__->set_primary_key("authid");
117
118
119
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-17 14:32:41
120
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0jyCSX6kJcGGLPMxF1noXQ
121
122
123
# You can replace this text with custom code or comments, and it will be preserved on regeneration
124
1;

Return to bug 30888