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

(-)a/Koha/Schema/Result/Aqbookseller.pm (-40 / +2 lines)
Lines 65-102 __PACKAGE__->table("aqbooksellers"); Link Here
65
  data_type: 'longtext'
65
  data_type: 'longtext'
66
  is_nullable: 1
66
  is_nullable: 1
67
67
68
=head2 othersupplier
69
70
  data_type: 'longtext'
71
  is_nullable: 1
72
73
=head2 currency
74
75
  data_type: 'varchar'
76
  default_value: (empty string)
77
  is_nullable: 0
78
  size: 10
79
80
=head2 booksellerfax
81
82
  data_type: 'longtext'
83
  is_nullable: 1
84
85
=head2 notes
68
=head2 notes
86
69
87
  data_type: 'longtext'
70
  data_type: 'longtext'
88
  is_nullable: 1
71
  is_nullable: 1
89
72
90
=head2 bookselleremail
91
92
  data_type: 'longtext'
93
  is_nullable: 1
94
95
=head2 booksellerurl
96
97
  data_type: 'longtext'
98
  is_nullable: 1
99
100
=head2 postal
73
=head2 postal
101
74
102
  data_type: 'longtext'
75
  data_type: 'longtext'
Lines 184-201 __PACKAGE__->add_columns( Link Here
184
  { data_type => "varchar", is_nullable => 1, size => 30 },
157
  { data_type => "varchar", is_nullable => 1, size => 30 },
185
  "accountnumber",
158
  "accountnumber",
186
  { data_type => "longtext", is_nullable => 1 },
159
  { data_type => "longtext", is_nullable => 1 },
187
  "othersupplier",
188
  { data_type => "longtext", is_nullable => 1 },
189
  "currency",
190
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
191
  "booksellerfax",
192
  { data_type => "longtext", is_nullable => 1 },
193
  "notes",
160
  "notes",
194
  { data_type => "longtext", is_nullable => 1 },
161
  { data_type => "longtext", is_nullable => 1 },
195
  "bookselleremail",
196
  { data_type => "longtext", is_nullable => 1 },
197
  "booksellerurl",
198
  { data_type => "longtext", is_nullable => 1 },
199
  "postal",
162
  "postal",
200
  { data_type => "longtext", is_nullable => 1 },
163
  { data_type => "longtext", is_nullable => 1 },
201
  "url",
164
  "url",
Lines 382-389 __PACKAGE__->has_many( Link Here
382
);
345
);
383
346
384
347
385
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
348
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-17 08:54:13
386
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DyaF9RbcNAOjPQ1lrxHV3A
349
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1lSFcy25po9EBzkNkjL5UA
387
350
388
__PACKAGE__->add_columns(
351
__PACKAGE__->add_columns(
389
    '+active' => { is_boolean => 1 },
352
    '+active' => { is_boolean => 1 },
390
- 

Return to bug 18177