diff --git a/Koha/Schema/Result/AccountOffset.pm b/Koha/Schema/Result/AccountOffset.pm index 34a8818d54..59b0f175b8 100644 --- a/Koha/Schema/Result/AccountOffset.pm +++ b/Koha/Schema/Result/AccountOffset.pm @@ -53,6 +53,8 @@ The id of the accountline that decreased the patron's balance extra: {list => ["CREATE","APPLY","VOID","OVERDUE_INCREASE","OVERDUE_DECREASE"]} is_nullable: 0 +The type of offset this is + =head2 amount data_type: 'decimal' @@ -157,8 +159,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tIMfx4/KryuWOy7dD4SSvw +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9cpw6AMomcitr7VG0kGp+A sub koha_object_class { 'Koha::Account::Offset'; diff --git a/Koha/Schema/Result/AdditionalContent.pm b/Koha/Schema/Result/AdditionalContent.pm index 72f4265f9e..f5846172ae 100644 --- a/Koha/Schema/Result/AdditionalContent.pm +++ b/Koha/Schema/Result/AdditionalContent.pm @@ -30,7 +30,7 @@ __PACKAGE__->table("additional_contents"); is_auto_increment: 1 is_nullable: 0 -unique identifier for the news article +unique identifier for the additional content =head2 category @@ -46,6 +46,8 @@ category for the additional content is_nullable: 0 size: 100 +code to group content per lang + =head2 location data_type: 'varchar' @@ -61,7 +63,7 @@ location of the additional content is_nullable: 1 size: 10 -branch code users to create branch specific news, NULL is every branch. +branch code users to create branch specific additional content, NULL is every branch. =head2 title @@ -70,14 +72,14 @@ branch code users to create branch specific news, NULL is every branch. is_nullable: 0 size: 250 -title of the news article +title of the additional content =head2 content data_type: 'mediumtext' is_nullable: 0 -the body of your news article +the body of your additional content =head2 lang @@ -86,6 +88,8 @@ the body of your news article is_nullable: 0 size: 50 +location for the additional content(koha is the staff interface, slip is the circulation receipt and language codes are for the opac) + =head2 published_on data_type: 'date' @@ -109,14 +113,14 @@ last modification datetime_undef_if_invalid: 1 is_nullable: 1 -date the article is set to expire or no longer be visible +date the additional content is set to expire or no longer be visible =head2 number data_type: 'integer' is_nullable: 1 -the order in which this article appears in that specific location +the order in which this additional content appears in that specific location =head2 borrowernumber @@ -124,7 +128,7 @@ the order in which this article appears in that specific location is_foreign_key: 1 is_nullable: 1 -The user who created the news article +The user who created the additional content =cut @@ -245,8 +249,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:usmPoA/gkS2xRxd7fYF3fw +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cVSXyrPzIA3sixXON/OZVA # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/ArticleRequest.pm b/Koha/Schema/Result/ArticleRequest.pm index b0a0d67b73..4e8b103e9d 100644 --- a/Koha/Schema/Result/ArticleRequest.pm +++ b/Koha/Schema/Result/ArticleRequest.pm @@ -147,6 +147,8 @@ Be careful with two timestamps in one table not allowing NULL default_value: 0 is_nullable: 0 +borrower requested table of contents + =cut __PACKAGE__->add_columns( @@ -300,8 +302,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pIhq9T0mZT3sftAm12vOFw +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gFRrqJbljbshFjBDJYQjmg # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm index 30a2fecd99..3f66552b12 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -607,6 +607,8 @@ flag for allowing auto-renewal is_nullable: 1 size: 45 +useful for reporting purposes + =cut __PACKAGE__->add_columns( @@ -1903,8 +1905,8 @@ Composing rels: L -> ordernumber __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sDTkebNRNOCi33SMXEduNQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RqT/8KGs5o4h7R/gbr4eAA __PACKAGE__->add_columns( '+anonymized' => { is_boolean => 1 }, diff --git a/Koha/Schema/Result/BorrowerModification.pm b/Koha/Schema/Result/BorrowerModification.pm index 0247f92dc0..d23af185d3 100644 --- a/Koha/Schema/Result/BorrowerModification.pm +++ b/Koha/Schema/Result/BorrowerModification.pm @@ -429,6 +429,8 @@ data processing consent is_nullable: 1 size: 45 +useful for reporting purposes + =cut __PACKAGE__->add_columns( @@ -620,8 +622,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TjeJJHwybEXDdQow+zoN0Q +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Wv9AtLW9kt+Zry2OykBbPQ sub koha_object_class { 'Koha::Patron::Modification'; diff --git a/Koha/Schema/Result/Branch.pm b/Koha/Schema/Result/Branch.pm index 369183ef5f..124fe66c53 100644 --- a/Koha/Schema/Result/Branch.pm +++ b/Koha/Schema/Result/Branch.pm @@ -197,6 +197,8 @@ the ability to act as a pickup location default_value: 1 is_nullable: 0 +whether this library should show in the opac + =cut __PACKAGE__->add_columns( @@ -865,8 +867,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dCj6b++cG2Yw6RbDRwS36Q +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eZa/G9laJmJ7/J3ooRTNsA __PACKAGE__->add_columns( '+pickup_location' => { is_boolean => 1 }, diff --git a/Koha/Schema/Result/Branchtransfer.pm b/Koha/Schema/Result/Branchtransfer.pm index 6149da99aa..6024570bd7 100644 --- a/Koha/Schema/Result/Branchtransfer.pm +++ b/Koha/Schema/Result/Branchtransfer.pm @@ -114,6 +114,8 @@ what triggered the transfer extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","ItemLost","WrongTransfer"]} is_nullable: 1 +what triggered the transfer cancellation + =cut __PACKAGE__->add_columns( @@ -270,8 +272,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i3i3iZZXFXEhUTGyiBKctg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+n6E5pB4Wd5bQwvBqbsp+A sub koha_object_class { 'Koha::Item::Transfer'; diff --git a/Koha/Schema/Result/CourseItem.pm b/Koha/Schema/Result/CourseItem.pm index 5023247661..00ef0cfa74 100644 --- a/Koha/Schema/Result/CourseItem.pm +++ b/Koha/Schema/Result/CourseItem.pm @@ -37,12 +37,16 @@ course item id is_foreign_key: 1 is_nullable: 1 +items.itemnumber for the item on reserve + =head2 biblionumber data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +biblio.biblionumber for the bibliographic record on reserve + =head2 itype data_type: 'varchar' @@ -376,8 +380,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:POSrFfPaLTvTKIvyLsSYrA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:npYbmEWoNcA7X8QZ+ssVyw __PACKAGE__->add_columns( '+itype_enabled' => { is_boolean => 1 }, diff --git a/Koha/Schema/Result/Deletedborrower.pm b/Koha/Schema/Result/Deletedborrower.pm index 28833ac4cf..df1488dc3e 100644 --- a/Koha/Schema/Result/Deletedborrower.pm +++ b/Koha/Schema/Result/Deletedborrower.pm @@ -604,6 +604,8 @@ flag for allowing auto-renewal is_nullable: 1 size: 45 +useful for reporting purposes + =cut __PACKAGE__->add_columns( @@ -783,8 +785,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:15:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:exBqp4o7lkVdMzeN6CjOzg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-07 09:16:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L1o8BnUXQT8/5DlbOBM3GA __PACKAGE__->add_columns( '+anonymized' => { is_boolean => 1 },