Lines 49-54
__PACKAGE__->table("auth_types");
Link Here
|
49 |
data_type: 'longtext' |
49 |
data_type: 'longtext' |
50 |
is_nullable: 0 |
50 |
is_nullable: 0 |
51 |
|
51 |
|
|
|
52 |
=head2 subfield_to_report_in_1 |
53 |
|
54 |
data_type: 'varchar' |
55 |
default_value: (empty string) |
56 |
is_nullable: 0 |
57 |
size: 5 |
58 |
|
59 |
Authority subfield to report in biblio $1 |
60 |
|
52 |
=cut |
61 |
=cut |
53 |
|
62 |
|
54 |
__PACKAGE__->add_columns( |
63 |
__PACKAGE__->add_columns( |
Lines 60-65
__PACKAGE__->add_columns(
Link Here
|
60 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 3 }, |
69 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 3 }, |
61 |
"summary", |
70 |
"summary", |
62 |
{ data_type => "longtext", is_nullable => 0 }, |
71 |
{ data_type => "longtext", is_nullable => 0 }, |
|
|
72 |
"subfield_to_report_in_1", |
73 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 5 }, |
63 |
); |
74 |
); |
64 |
|
75 |
|
65 |
=head1 PRIMARY KEY |
76 |
=head1 PRIMARY KEY |
Lines 107-114
__PACKAGE__->has_many(
Link Here
|
107 |
); |
118 |
); |
108 |
|
119 |
|
109 |
|
120 |
|
110 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53 |
121 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-05 09:38:32 |
111 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:USULz4Y8i0JC73GxcxJ+BA |
122 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ObEH05kI+ozceFnaYBehyw |
112 |
|
123 |
|
113 |
sub koha_object_class { |
124 |
sub koha_object_class { |
114 |
'Koha::Authority::Type'; |
125 |
'Koha::Authority::Type'; |
115 |
- |
|
|