From 7f595f8cb8ff04b2cc026c28aa6de276e6d61b5f Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 5 May 2014 02:40:09 +0000 Subject: [PATCH] Bug 10807: (follow-up) update DBIC schema classes Signed-off-by: Galen Charlton --- Koha/Schema/Result/SearchHistory.pm | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/SearchHistory.pm b/Koha/Schema/Result/SearchHistory.pm index 224d9f0847..f031384fee 100644 --- a/Koha/Schema/Result/SearchHistory.pm +++ b/Koha/Schema/Result/SearchHistory.pm @@ -45,6 +45,13 @@ __PACKAGE__->table("search_history"); data_type: 'text' is_nullable: 0 +=head2 type + + data_type: 'varchar' + default_value: 'biblio' + is_nullable: 0 + size: 16 + =head2 total data_type: 'integer' @@ -68,6 +75,13 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 0, size => 255 }, "query_cgi", { data_type => "text", is_nullable => 0 }, + "type", + { + data_type => "varchar", + default_value => "biblio", + is_nullable => 0, + size => 16, + }, "total", { data_type => "integer", is_nullable => 0 }, "time", @@ -80,8 +94,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HLDQ0HfcjBkl6y1rXoX0qA +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-05 02:39:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8x/CWZQFWoXcKGVs4h4CWQ # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2