Bug 25501: Supress warnings on installing translation
[koha.git] / Koha / Schema / Result / NeedMergeAuthority.pm
bloba4e4795e1114923a3c0b384c5b6d3865deb7b6be
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: 'mediumtext'
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 => "mediumtext", 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 @ 2018-02-16 17:54:54
96 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7LzwIYvExKvNgr8/HDZlsg
98 sub koha_object_class {
99 'Koha::Authority::MergeRequest';
101 sub koha_objects_class {
102 'Koha::Authority::MergeRequests';