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

(-)a/Koha/Schema/Result/Aqbookseller.pm (-26 / +4 lines)
Lines 34-55 __PACKAGE__->table("aqbooksellers"); Link Here
34
  data_type: 'longtext'
34
  data_type: 'longtext'
35
  is_nullable: 0
35
  is_nullable: 0
36
36
37
=head2 address1
37
=head2 address
38
39
  data_type: 'longtext'
40
  is_nullable: 1
41
42
=head2 address2
43
44
  data_type: 'longtext'
45
  is_nullable: 1
46
47
=head2 address3
48
49
  data_type: 'longtext'
50
  is_nullable: 1
51
52
=head2 address4
53
38
54
  data_type: 'longtext'
39
  data_type: 'longtext'
55
  is_nullable: 1
40
  is_nullable: 1
Lines 145-157 __PACKAGE__->add_columns( Link Here
145
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
130
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
146
  "name",
131
  "name",
147
  { data_type => "longtext", is_nullable => 0 },
132
  { data_type => "longtext", is_nullable => 0 },
148
  "address1",
133
  "address",
149
  { data_type => "longtext", is_nullable => 1 },
150
  "address2",
151
  { data_type => "longtext", is_nullable => 1 },
152
  "address3",
153
  { data_type => "longtext", is_nullable => 1 },
154
  "address4",
155
  { data_type => "longtext", is_nullable => 1 },
134
  { data_type => "longtext", is_nullable => 1 },
156
  "phone",
135
  "phone",
157
  { data_type => "varchar", is_nullable => 1, size => 30 },
136
  { data_type => "varchar", is_nullable => 1, size => 30 },
Lines 345-352 __PACKAGE__->has_many( Link Here
345
);
324
);
346
325
347
326
348
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-17 08:54:13
327
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-17 09:37:12
349
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1lSFcy25po9EBzkNkjL5UA
328
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FCBS9Bfm/iN6bla/7xQe7A
350
329
351
__PACKAGE__->add_columns(
330
__PACKAGE__->add_columns(
352
    '+active' => { is_boolean => 1 },
331
    '+active' => { is_boolean => 1 },
353
- 

Return to bug 15272