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

(-)a/Koha/Schema/Result/NeedMergeAuthority.pm (-5 / +18 lines)
Lines 29-39 __PACKAGE__->table("need_merge_authorities"); Link Here
29
  is_auto_increment: 1
29
  is_auto_increment: 1
30
  is_nullable: 0
30
  is_nullable: 0
31
31
32
=head2 authid
32
=head2 authid_from
33
33
34
  data_type: 'bigint'
34
  data_type: 'bigint'
35
  is_nullable: 0
35
  is_nullable: 0
36
36
37
=head2 authid_to
38
39
  data_type: 'bigint'
40
  is_nullable: 0
41
42
=head2 reportxml
43
44
  data_type: 'text'
45
  is_nullable: 1
46
37
=head2 done
47
=head2 done
38
48
39
  data_type: 'tinyint'
49
  data_type: 'tinyint'
Lines 45-52 __PACKAGE__->table("need_merge_authorities"); Link Here
45
__PACKAGE__->add_columns(
55
__PACKAGE__->add_columns(
46
  "id",
56
  "id",
47
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
57
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
48
  "authid",
58
  "authid_from",
59
  { data_type => "bigint", is_nullable => 0 },
60
  "authid_to",
49
  { data_type => "bigint", is_nullable => 0 },
61
  { data_type => "bigint", is_nullable => 0 },
62
  "reportxml",
63
  { data_type => "text", is_nullable => 1 },
50
  "done",
64
  "done",
51
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
65
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
52
);
66
);
Lines 64-71 __PACKAGE__->add_columns( Link Here
64
__PACKAGE__->set_primary_key("id");
78
__PACKAGE__->set_primary_key("id");
65
79
66
80
67
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
81
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-14 09:06:39
68
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BL9ArSyPrmUG0QrrWgoPSw
82
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nZzObNCLZLlo0H3ZjuOekw
69
83
70
84
71
# You can replace this text with custom content, and it will be preserved on regeneration
85
# You can replace this text with custom content, and it will be preserved on regeneration
72
- 

Return to bug 9988