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

(-)a/Koha/Schema/Result/Z3950server.pm (-9 / +8 lines)
Lines 34-40 unique identifier assigned by Koha Link Here
34
=head2 host
34
=head2 host
35
35
36
  data_type: 'varchar'
36
  data_type: 'varchar'
37
  is_nullable: 1
37
  is_nullable: 0
38
  size: 255
38
  size: 255
39
39
40
target's host name
40
target's host name
Lines 94-100 where this target appears in the list of targets Link Here
94
=head2 syntax
94
=head2 syntax
95
95
96
  data_type: 'varchar'
96
  data_type: 'varchar'
97
  is_nullable: 1
97
  is_nullable: 0
98
  size: 80
98
  size: 80
99
99
100
marc format provided by this target
100
marc format provided by this target
Lines 119-125 zed means z39.50 server Link Here
119
=head2 encoding
119
=head2 encoding
120
120
121
  data_type: 'mediumtext'
121
  data_type: 'mediumtext'
122
  is_nullable: 1
122
  is_nullable: 0
123
123
124
characters encoding provided by this target
124
characters encoding provided by this target
125
125
Lines 168-174 __PACKAGE__->add_columns( Link Here
168
  "id",
168
  "id",
169
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
169
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
170
  "host",
170
  "host",
171
  { data_type => "varchar", is_nullable => 1, size => 255 },
171
  { data_type => "varchar", is_nullable => 0, size => 255 },
172
  "port",
172
  "port",
173
  { data_type => "integer", is_nullable => 1 },
173
  { data_type => "integer", is_nullable => 1 },
174
  "db",
174
  "db",
Lines 184-190 __PACKAGE__->add_columns( Link Here
184
  "rank",
184
  "rank",
185
  { data_type => "integer", is_nullable => 1 },
185
  { data_type => "integer", is_nullable => 1 },
186
  "syntax",
186
  "syntax",
187
  { data_type => "varchar", is_nullable => 1, size => 80 },
187
  { data_type => "varchar", is_nullable => 0, size => 80 },
188
  "timeout",
188
  "timeout",
189
  { data_type => "integer", default_value => 0, is_nullable => 0 },
189
  { data_type => "integer", default_value => 0, is_nullable => 0 },
190
  "servertype",
190
  "servertype",
Lines 195-201 __PACKAGE__->add_columns( Link Here
195
    is_nullable => 0,
195
    is_nullable => 0,
196
  },
196
  },
197
  "encoding",
197
  "encoding",
198
  { data_type => "mediumtext", is_nullable => 1 },
198
  { data_type => "mediumtext", is_nullable => 0 },
199
  "recordtype",
199
  "recordtype",
200
  {
200
  {
201
    data_type => "enum",
201
    data_type => "enum",
Lines 226-233 __PACKAGE__->add_columns( Link Here
226
__PACKAGE__->set_primary_key("id");
226
__PACKAGE__->set_primary_key("id");
227
227
228
228
229
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
229
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-24 12:52:52
230
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6X1cn33CRBtk/lMZF8QY2Q
230
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f9OhhCSCHCAQk9TnmKgYmg
231
231
232
sub koha_object_class {
232
sub koha_object_class {
233
    'Koha::Z3950Server';
233
    'Koha::Z3950Server';
234
- 

Return to bug 30571