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

(-)a/Koha/Schema/Result/AuthHeader.pm (-3 / +9 lines)
Lines 50-55 __PACKAGE__->table("auth_header"); Link Here
50
  default_value: current_timestamp
50
  default_value: current_timestamp
51
  is_nullable: 0
51
  is_nullable: 0
52
52
53
=head2 heading
54
55
  data_type: 'longtext'
56
  is_nullable: 1
57
53
=head2 origincode
58
=head2 origincode
54
59
55
  data_type: 'varchar'
60
  data_type: 'varchar'
Lines 97-102 __PACKAGE__->add_columns( Link Here
97
    default_value => \"current_timestamp",
102
    default_value => \"current_timestamp",
98
    is_nullable => 0,
103
    is_nullable => 0,
99
  },
104
  },
105
  "heading",
106
  { data_type => "longtext", is_nullable => 1 },
100
  "origincode",
107
  "origincode",
101
  { data_type => "varchar", is_nullable => 1, size => 20 },
108
  { data_type => "varchar", is_nullable => 1, size => 20 },
102
  "authtrees",
109
  "authtrees",
Lines 122-129 __PACKAGE__->add_columns( Link Here
122
__PACKAGE__->set_primary_key("authid");
129
__PACKAGE__->set_primary_key("authid");
123
130
124
131
125
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
132
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-01-19 12:45:06
126
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kHEdfMFYFtn3sQ20qsdFyg
133
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ldm1Ln8S/SPQYMD9gKbyKg
127
134
128
sub koha_object_class {
135
sub koha_object_class {
129
    'Koha::Authority';
136
    'Koha::Authority';
130
- 

Return to bug 30047