@@ -, +, @@ --- Koha/Schema/Result/Borrower.pm | 18 ++++++++++++++++-- Koha/Schema/Result/Category.pm | 18 ++++++++++++++++-- Koha/Schema/Result/Deletedborrower.pm | 18 ++++++++++++++++-- 3 files changed, 48 insertions(+), 6 deletions(-) --- a/Koha/Schema/Result/Borrower.pm +++ a/Koha/Schema/Result/Borrower.pm @@ -407,6 +407,13 @@ __PACKAGE__->table("borrowers"); default_value: 0 is_nullable: 0 +=head2 checkprevcheckout + + data_type: 'varchar' + default_value: 'inherit' + is_nullable: 0 + size: 7 + =head2 updated_on data_type: 'timestamp' @@ -583,6 +590,13 @@ __PACKAGE__->add_columns( { data_type => "integer", default_value => 1, is_nullable => 0 }, "privacy_guarantor_checkouts", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "checkprevcheckout", + { + data_type => "varchar", + default_value => "inherit", + is_nullable => 0, + size => 7, + }, "updated_on", { data_type => "timestamp", @@ -1218,8 +1232,8 @@ Composing rels: L -> ordernumber __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-14 16:35:12 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Luq1YVrOwtdDvSDWgWNGUg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-07-04 17:36:29 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0RuwTMzB5epoBGGCOcTHwg __PACKAGE__->belongs_to( "guarantor", --- a/Koha/Schema/Result/Category.pm +++ a/Koha/Schema/Result/Category.pm @@ -116,6 +116,13 @@ __PACKAGE__->table("categories"); extra: {list => ["default","never","forever"]} is_nullable: 0 +=head2 checkprevcheckout + + data_type: 'varchar' + default_value: 'inherit' + is_nullable: 0 + size: 7 + =cut __PACKAGE__->add_columns( @@ -161,6 +168,13 @@ __PACKAGE__->add_columns( extra => { list => ["default", "never", "forever"] }, is_nullable => 0, }, + "checkprevcheckout", + { + data_type => "varchar", + default_value => "inherit", + is_nullable => 0, + size => 7, + }, ); =head1 PRIMARY KEY @@ -253,8 +267,8 @@ __PACKAGE__->might_have( ); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T4i7vp1kAZFXy6DiV1dqyw +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-07-04 17:36:29 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+aqNsJpVxnE5y3GwsnPAUA # You can replace this text with custom content, and it will be preserved on regeneration --- a/Koha/Schema/Result/Deletedborrower.pm +++ a/Koha/Schema/Result/Deletedborrower.pm @@ -404,6 +404,13 @@ __PACKAGE__->table("deletedborrowers"); default_value: 0 is_nullable: 0 +=head2 checkprevcheckout + + data_type: 'varchar' + default_value: 'inherit' + is_nullable: 0 + size: 7 + =head2 updated_on data_type: 'timestamp' @@ -568,6 +575,13 @@ __PACKAGE__->add_columns( { data_type => "integer", default_value => 1, is_nullable => 0 }, "privacy_guarantor_checkouts", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "checkprevcheckout", + { + data_type => "varchar", + default_value => "inherit", + is_nullable => 0, + size => 7, + }, "updated_on", { data_type => "timestamp", @@ -578,8 +592,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-14 16:35:12 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wmWyqDcbofgVoIbvRy7j6w +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-07-04 17:36:29 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NTzyvJODsmzRa91vTeCVcQ # You can replace this text with custom code or comments, and it will be preserved on regeneration --