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

(-)a/Koha/Schema/Result/SavedSql.pm (-2 / +9 lines)
Lines 105-110 __PACKAGE__->table("saved_sql"); Link Here
105
  is_nullable: 1
105
  is_nullable: 1
106
  size: 80
106
  size: 80
107
107
108
=head2 mana_id
109
110
  data_type: 'integer'
111
  is_nullable: 1
112
108
=cut
113
=cut
109
114
110
__PACKAGE__->add_columns(
115
__PACKAGE__->add_columns(
Lines 148-153 __PACKAGE__->add_columns( Link Here
148
  { data_type => "varchar", is_nullable => 1, size => 80 },
153
  { data_type => "varchar", is_nullable => 1, size => 80 },
149
  "report_subgroup",
154
  "report_subgroup",
150
  { data_type => "varchar", is_nullable => 1, size => 80 },
155
  { data_type => "varchar", is_nullable => 1, size => 80 },
156
  "mana_id",
157
  { data_type => "integer", is_nullable => 1 },
151
);
158
);
152
159
153
=head1 PRIMARY KEY
160
=head1 PRIMARY KEY
Lines 163-170 __PACKAGE__->add_columns( Link Here
163
__PACKAGE__->set_primary_key("id");
170
__PACKAGE__->set_primary_key("id");
164
171
165
172
166
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16
173
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-09-08 16:56:26
167
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eGWRRzpe1+EBialePAIhMQ
174
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:h0WO9NqYD7hGZIaYTBkYSA
168
175
169
176
170
# You can replace this text with custom content, and it will be preserved on regeneration
177
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Subscription.pm (-3 / +9 lines)
Lines 271-276 __PACKAGE__->table("subscription"); Link Here
271
  is_nullable: 1
271
  is_nullable: 1
272
  size: 10
272
  size: 10
273
273
274
=head2 mana_id
275
276
  data_type: 'integer'
277
  is_nullable: 1
278
274
=cut
279
=cut
275
280
276
__PACKAGE__->add_columns(
281
__PACKAGE__->add_columns(
Lines 358-363 __PACKAGE__->add_columns( Link Here
358
  { data_type => "varchar", is_nullable => 1, size => 10 },
363
  { data_type => "varchar", is_nullable => 1, size => 10 },
359
  "previousitemtype",
364
  "previousitemtype",
360
  { data_type => "varchar", is_nullable => 1, size => 10 },
365
  { data_type => "varchar", is_nullable => 1, size => 10 },
366
  "mana_id",
367
  { data_type => "integer", is_nullable => 1 },
361
);
368
);
362
369
363
=head1 PRIMARY KEY
370
=head1 PRIMARY KEY
Lines 445-452 __PACKAGE__->has_many( Link Here
445
);
452
);
446
453
447
454
448
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-09-12 09:39:32
455
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-09-08 16:56:26
449
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jAZGa1b6DkY8Sr12reD4nw
456
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:B7uzwnRQgHBSLbPlditcsA
450
457
451
458
452
# You can replace this text with custom content, and it will be preserved on regeneration
459
# You can replace this text with custom content, and it will be preserved on regeneration
453
- 

Return to bug 17047