Bugzilla – Attachment 60596 Details for
Bug 9988
Leave larger authority merges to merge_authorities cronjob (pref AuthorityMergeLimit)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 9988: DBIx schema changes for need_merge_authorities
Bug-9988-DBIx-schema-changes-for-needmergeauthorit.patch (text/plain), 2.23 KB, created by
Marcel de Rooy
on 2017-02-23 12:15:39 UTC
(
hide
)
Description:
Bug 9988: DBIx schema changes for need_merge_authorities
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2017-02-23 12:15:39 UTC
Size:
2.23 KB
patch
obsolete
>From b57d2b1208d4fe130c52553b96addca9d24316f7 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Tue, 14 Feb 2017 09:07:27 +0100 >Subject: [PATCH] Bug 9988: DBIx schema changes for need_merge_authorities >Content-Type: text/plain; charset=utf-8 > >As generated by misc/devel/update_dbix_class_files.pl. >No test plan. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > Koha/Schema/Result/NeedMergeAuthority.pm | 32 ++++++++++++++++++++++++++++++-- > 1 file changed, 30 insertions(+), 2 deletions(-) > >diff --git a/Koha/Schema/Result/NeedMergeAuthority.pm b/Koha/Schema/Result/NeedMergeAuthority.pm >index 2b491b7..dd7f318 100644 >--- a/Koha/Schema/Result/NeedMergeAuthority.pm >+++ b/Koha/Schema/Result/NeedMergeAuthority.pm >@@ -34,12 +34,29 @@ __PACKAGE__->table("need_merge_authorities"); > data_type: 'bigint' > is_nullable: 0 > >+=head2 authid_new >+ >+ data_type: 'bigint' >+ is_nullable: 1 >+ >+=head2 reportxml >+ >+ data_type: 'text' >+ is_nullable: 1 >+ > =head2 done > > data_type: 'tinyint' > default_value: 0 > is_nullable: 1 > >+=head2 timestamp >+ >+ data_type: 'timestamp' >+ datetime_undef_if_invalid: 1 >+ default_value: current_timestamp >+ is_nullable: 0 >+ > =cut > > __PACKAGE__->add_columns( >@@ -47,8 +64,19 @@ __PACKAGE__->add_columns( > { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, > "authid", > { data_type => "bigint", is_nullable => 0 }, >+ "authid_new", >+ { data_type => "bigint", is_nullable => 1 }, >+ "reportxml", >+ { data_type => "text", is_nullable => 1 }, > "done", > { data_type => "tinyint", default_value => 0, is_nullable => 1 }, >+ "timestamp", >+ { >+ data_type => "timestamp", >+ datetime_undef_if_invalid => 1, >+ default_value => \"current_timestamp", >+ is_nullable => 0, >+ }, > ); > > =head1 PRIMARY KEY >@@ -64,8 +92,8 @@ __PACKAGE__->add_columns( > __PACKAGE__->set_primary_key("id"); > > >-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BL9ArSyPrmUG0QrrWgoPSw >+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-18 16:34:45 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QCbtlKCgozivph6ozRzznQ > > > # You can replace this text with custom content, and it will be preserved on regeneration >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 9988
:
59158
|
59159
|
60256
|
60257
|
60258
|
60259
|
60594
|
60595
|
60596
|
60597
|
60598
|
60599
|
60600
|
60601
|
60602
|
60603
|
60604
|
60605
|
60606
|
60607
|
60668
|
60669
|
60670
|
60671
|
60672
|
60673
|
60674
|
60675
|
61306
|
61307
|
61308
|
61309
|
61779
|
61780
|
61781
|
61782
|
61783
|
61784
|
61785
|
61786
|
61787
|
61788
|
61789
|
61790
|
61791
|
61792
|
61890
|
61891
|
61892
|
61893
|
61894
|
61895
|
61897
|
61898
|
61899
|
61900
|
61901
|
61902
|
61903
|
61904
|
61912
|
61913
|
61914
|
61915
|
61916
|
61917
|
61918
|
61919
|
61920
|
61921
|
61922
|
61923
|
61924
|
61925
|
62055
|
62123
|
62124
|
62125
|
62126
|
62127
|
62128
|
62129
|
62130
|
62131
|
62132
|
62133
|
62134
|
62135
|
62136
|
62137