From c8c3ed6a8c6c56267a820c47d97adeb02c3697b3 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 --- 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 5d0cac62c4..38fe3e261f 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -74,6 +74,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' @@ -650,6 +657,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 81c5fed1fe..4c7e666265 100644 --- a/Koha/Schema/Result/BorrowerModification.pm +++ b/Koha/Schema/Result/BorrowerModification.pm @@ -79,6 +79,11 @@ __PACKAGE__->table("borrower_modifications"); data_type: 'mediumtext' is_nullable: 1 +=head2 pronouns + + data_type: 'longtext' + is_nullable: 1 + =head2 streetnumber data_type: 'varchar' @@ -459,6 +464,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 b36d2d3ede..10813bd5cb 100644 --- a/Koha/Schema/Result/Deletedborrower.pm +++ b/Koha/Schema/Result/Deletedborrower.pm @@ -74,6 +74,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' @@ -647,6 +654,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.20.1