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

(-)a/Koha/Schema/Result/Aqcontact.pm (-3 / +10 lines)
Lines 70-75 __PACKAGE__->table("aqcontacts"); Link Here
70
  data_type: 'mediumtext'
70
  data_type: 'mediumtext'
71
  is_nullable: 1
71
  is_nullable: 1
72
72
73
=head2 orderacquisition
74
75
  data_type: 'tinyint'
76
  default_value: 0
77
  is_nullable: 0
78
73
=head2 claimacquisition
79
=head2 claimacquisition
74
80
75
  data_type: 'tinyint'
81
  data_type: 'tinyint'
Lines 119-124 __PACKAGE__->add_columns( Link Here
119
  { data_type => "varchar", is_nullable => 1, size => 100 },
125
  { data_type => "varchar", is_nullable => 1, size => 100 },
120
  "notes",
126
  "notes",
121
  { data_type => "mediumtext", is_nullable => 1 },
127
  { data_type => "mediumtext", is_nullable => 1 },
128
  "orderacquisition",
129
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
122
  "claimacquisition",
130
  "claimacquisition",
123
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
131
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
124
  "claimissues",
132
  "claimissues",
Lines 161-168 __PACKAGE__->belongs_to( Link Here
161
);
169
);
162
170
163
171
164
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-26 11:53:50
172
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-14 07:14:13
165
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sIT7PzDxqInviUSe7wuzow
173
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9sJ0ALCjIsvdUcqgpej1JA
166
174
167
175
168
# You can replace this text with custom code or comments, and it will be preserved on regeneration
176
# You can replace this text with custom code or comments, and it will be preserved on regeneration
169
- 

Return to bug 5260