From a1a2a76615c7ab25bee00e96b3266438130273d5 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 21 Mar 2019 19:24:59 +0000 Subject: [PATCH] Bug 21683: Schema updates Signed-off-by: Nick Clemens --- Koha/Schema/Result/Accountline.pm | 12 ++---------- Koha/Schema/Result/Statistic.pm | 12 ++---------- 2 files changed, 4 insertions(+), 20 deletions(-) diff --git a/Koha/Schema/Result/Accountline.pm b/Koha/Schema/Result/Accountline.pm index b5e220a90e..22416040fd 100644 --- a/Koha/Schema/Result/Accountline.pm +++ b/Koha/Schema/Result/Accountline.pm @@ -40,12 +40,6 @@ __PACKAGE__->table("accountlines"); is_foreign_key: 1 is_nullable: 1 -=head2 accountno - - data_type: 'smallint' - default_value: 0 - is_nullable: 0 - =head2 itemnumber data_type: 'integer' @@ -126,8 +120,6 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "borrowernumber", { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, - "accountno", - { data_type => "smallint", default_value => 0, is_nullable => 0 }, "itemnumber", { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, "date", @@ -264,8 +256,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-01-03 16:10:04 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BO7iSB+QzoJNuZ8Uttba6A +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-21 19:22:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hUtKezIBauLDzkRIq5ifTQ sub koha_objects_class { 'Koha::Account::Lines'; diff --git a/Koha/Schema/Result/Statistic.pm b/Koha/Schema/Result/Statistic.pm index 45fe021a0e..62fd4c5f87 100644 --- a/Koha/Schema/Result/Statistic.pm +++ b/Koha/Schema/Result/Statistic.pm @@ -35,12 +35,6 @@ __PACKAGE__->table("statistics"); is_nullable: 1 size: 10 -=head2 proccode - - data_type: 'varchar' - is_nullable: 1 - size: 4 - =head2 value data_type: 'double precision' @@ -108,8 +102,6 @@ __PACKAGE__->add_columns( }, "branch", { data_type => "varchar", is_nullable => 1, size => 10 }, - "proccode", - { data_type => "varchar", is_nullable => 1, size => 4 }, "value", { data_type => "double precision", is_nullable => 1, size => [16, 4] }, "type", @@ -133,8 +125,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-26 16:15:09 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OECp3uSP488L8TUoS1HseQ +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-21 19:22:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lnIllYjs9funehkB7Y4jjw # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.5