Bug 9988 - DBRev 16.12.00.023
[koha.git] / Koha / Schema / Result / NeedMergeAuthority.pm
blob614be246c1ceff9795984f10d70420b5f683a845
1 use utf8;
2 package Koha::Schema::Result::NeedMergeAuthority;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::NeedMergeAuthority
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<need_merge_authorities>
20 =cut
22 __PACKAGE__->table("need_merge_authorities");
24 =head1 ACCESSORS
26 =head2 id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 authid
34 data_type: 'bigint'
35 is_nullable: 0
37 =head2 authid_new
39 data_type: 'bigint'
40 is_nullable: 1
42 =head2 reportxml
44 data_type: 'text'
45 is_nullable: 1
47 =head2 timestamp
49 data_type: 'timestamp'
50 datetime_undef_if_invalid: 1
51 default_value: current_timestamp
52 is_nullable: 0
54 =head2 done
56 data_type: 'tinyint'
57 default_value: 0
58 is_nullable: 1
60 =cut
62 __PACKAGE__->add_columns(
63 "id",
64 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
65 "authid",
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 },
71 "timestamp",
73 data_type => "timestamp",
74 datetime_undef_if_invalid => 1,
75 default_value => \"current_timestamp",
76 is_nullable => 0,
78 "done",
79 { data_type => "tinyint", default_value => 0, is_nullable => 1 },
82 =head1 PRIMARY KEY
84 =over 4
86 =item * L</id>
88 =back
90 =cut
92 __PACKAGE__->set_primary_key("id");
95 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-12 19:42:42
96 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BW1u1si2H88+GS/Ok8fuGA
99 # You can replace this text with custom content, and it will be preserved on regeneration