From c4ff2d453176b69b4626d367e8b78fe8cda04061 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 9 Jun 2022 14:34:20 +0000 Subject: [PATCH] Bug 10950: Schema update Signed-off-by: Martin Renvoize Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste-Henry --- Koha/Schema/Result/Borrower.pm | 9 +++++++++ Koha/Schema/Result/BorrowerModification.pm | 7 +++++++ Koha/Schema/Result/Deletedborrower.pm | 9 +++++++++ 3 files changed, 25 insertions(+) diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm index 81e45238a9..2ce72c3dc0 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/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", diff --git a/Koha/Schema/Result/BorrowerModification.pm b/Koha/Schema/Result/BorrowerModification.pm index 19e89f33fd..d2d31ecb82 100644 --- a/Koha/Schema/Result/BorrowerModification.pm +++ b/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", diff --git a/Koha/Schema/Result/Deletedborrower.pm b/Koha/Schema/Result/Deletedborrower.pm index 6f8dee23ec..12eb0385ee 100644 --- a/Koha/Schema/Result/Deletedborrower.pm +++ b/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", -- 2.30.2