@@ -, +, @@ --- Koha/Schema/Result/Borrower.pm | 9 +++++++++ Koha/Schema/Result/BorrowerModification.pm | 7 +++++++ Koha/Schema/Result/Deletedborrower.pm | 9 +++++++++ 3 files changed, 25 insertions(+) --- a/Koha/Schema/Result/Borrower.pm +++ a/Koha/Schema/Result/Borrower.pm @@ -81,6 +81,13 @@ any other names associated with the patron/borrower initials for your patron/borrower +=head2 pronouns + + data_type: 'longtext' + is_nullable: 1 + +patron/borrower's pronouns + =head2 streetnumber data_type: 'tinytext' @@ -659,6 +666,8 @@ __PACKAGE__->add_columns( { data_type => "longtext", is_nullable => 1 }, "initials", { data_type => "mediumtext", is_nullable => 1 }, + "pronouns", + { data_type => "longtext", is_nullable => 1 }, "streetnumber", { data_type => "tinytext", is_nullable => 1 }, "streettype", --- a/Koha/Schema/Result/BorrowerModification.pm +++ a/Koha/Schema/Result/BorrowerModification.pm @@ -86,6 +86,11 @@ patron/borrower's middle name data_type: 'mediumtext' is_nullable: 1 +=head2 pronouns + + data_type: 'longtext' + is_nullable: 1 + =head2 streetnumber data_type: 'varchar' @@ -468,6 +473,8 @@ __PACKAGE__->add_columns( { data_type => "longtext", is_nullable => 1 }, "initials", { data_type => "mediumtext", is_nullable => 1 }, + "pronouns", + { data_type => "longtext", is_nullable => 1 }, "streetnumber", { data_type => "varchar", is_nullable => 1, size => 10 }, "streettype", --- a/Koha/Schema/Result/Deletedborrower.pm +++ a/Koha/Schema/Result/Deletedborrower.pm @@ -81,6 +81,13 @@ any other names associated with the patron/borrower initials for your patron/borrower +=head2 pronouns + + data_type: 'longtext' + is_nullable: 1 + +patron/borrower's pronouns + =head2 streetnumber data_type: 'tinytext' @@ -656,6 +663,8 @@ __PACKAGE__->add_columns( { data_type => "longtext", is_nullable => 1 }, "initials", { data_type => "mediumtext", is_nullable => 1 }, + "pronouns", + { data_type => "longtext", is_nullable => 1 }, "streetnumber", { data_type => "tinytext", is_nullable => 1 }, "streettype", --