From 462dc01cee6f8edc76c686d36aac66ef90a5aad4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 9 May 2018 12:54:57 -0300 Subject: [PATCH] Bug 20402: Update DBIX schema Signed-off-by: Jonathan Druart --- Koha/Schema/Result/OauthAccessToken.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Koha/Schema/Result/OauthAccessToken.pm b/Koha/Schema/Result/OauthAccessToken.pm index 85b8a53fe1..a3cb2492aa 100644 --- a/Koha/Schema/Result/OauthAccessToken.pm +++ b/Koha/Schema/Result/OauthAccessToken.pm @@ -27,13 +27,13 @@ __PACKAGE__->table("oauth_access_tokens"); data_type: 'varchar' is_nullable: 0 - size: 255 + size: 191 =head2 client_id data_type: 'varchar' is_nullable: 0 - size: 255 + size: 191 =head2 expires @@ -44,9 +44,9 @@ __PACKAGE__->table("oauth_access_tokens"); __PACKAGE__->add_columns( "access_token", - { data_type => "varchar", is_nullable => 0, size => 255 }, + { data_type => "varchar", is_nullable => 0, size => 191 }, "client_id", - { data_type => "varchar", is_nullable => 0, size => 255 }, + { data_type => "varchar", is_nullable => 0, size => 191 }, "expires", { data_type => "integer", is_nullable => 0 }, ); @@ -64,8 +64,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("access_token"); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-04-11 17:44:30 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:u2e++Jrwln4Qhi3UPx2CQA +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-09 12:50:58 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:M6tueO6jmJwgmwMrqO1L0Q # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5