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

(-)a/Koha/Schema/Result/NeedMergeAuthority.pm (-3 / +30 lines)
Lines 34-45 __PACKAGE__->table("need_merge_authorities"); Link Here
34
  data_type: 'bigint'
34
  data_type: 'bigint'
35
  is_nullable: 0
35
  is_nullable: 0
36
36
37
=head2 authid_new
38
39
  data_type: 'bigint'
40
  is_nullable: 1
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'
40
  default_value: 0
50
  default_value: 0
41
  is_nullable: 1
51
  is_nullable: 1
42
52
53
=head2 timestamp
54
55
  data_type: 'timestamp'
56
  datetime_undef_if_invalid: 1
57
  default_value: current_timestamp
58
  is_nullable: 0
59
43
=cut
60
=cut
44
61
45
__PACKAGE__->add_columns(
62
__PACKAGE__->add_columns(
Lines 47-54 __PACKAGE__->add_columns( Link Here
47
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
64
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
48
  "authid",
65
  "authid",
49
  { data_type => "bigint", is_nullable => 0 },
66
  { data_type => "bigint", is_nullable => 0 },
67
  "authid_new",
68
  { data_type => "bigint", is_nullable => 1 },
69
  "reportxml",
70
  { data_type => "text", is_nullable => 1 },
50
  "done",
71
  "done",
51
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
72
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
73
  "timestamp",
74
  {
75
    data_type => "timestamp",
76
    datetime_undef_if_invalid => 1,
77
    default_value => \"current_timestamp",
78
    is_nullable => 0,
79
  },
52
);
80
);
53
81
54
=head1 PRIMARY KEY
82
=head1 PRIMARY KEY
Lines 64-71 __PACKAGE__->add_columns( Link Here
64
__PACKAGE__->set_primary_key("id");
92
__PACKAGE__->set_primary_key("id");
65
93
66
94
67
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
95
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-18 16:34:45
68
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BL9ArSyPrmUG0QrrWgoPSw
96
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QCbtlKCgozivph6ozRzznQ
69
97
70
98
71
# You can replace this text with custom content, and it will be preserved on regeneration
99
# You can replace this text with custom content, and it will be preserved on regeneration
72
- 

Return to bug 9988