From df5c500843c655816bd02dfec76b44da90809f52 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 14 Jun 2021 16:34:15 +0200 Subject: [PATCH] Bug 28489: DBIC schema changes Signed-off-by: Jonathan Druart --- Koha/Schema/Result/Session.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Session.pm b/Koha/Schema/Result/Session.pm index 38b2aac159..fac58e5444 100644 --- a/Koha/Schema/Result/Session.pm +++ b/Koha/Schema/Result/Session.pm @@ -31,7 +31,7 @@ __PACKAGE__->table("sessions"); =head2 a_session - data_type: 'longtext' + data_type: 'longblob' is_nullable: 0 =cut @@ -40,7 +40,7 @@ __PACKAGE__->add_columns( "id", { data_type => "varchar", is_nullable => 0, size => 32 }, "a_session", - { data_type => "longtext", is_nullable => 0 }, + { data_type => "longblob", is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -56,8 +56,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("id"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YyoQx5Kb6G7W0CVV96chpQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-14 14:29:14 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:X2kFCWc5yy6mfdsQuAO8Hw # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2