Bug 21683: Schema updates
authorNick Clemens <nick@bywatersolutions.com>
Thu, 21 Mar 2019 19:24:59 +0000 (19:24 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Thu, 21 Mar 2019 19:24:59 +0000 (19:24 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

Koha/Schema/Result/Accountline.pm
Koha/Schema/Result/Statistic.pm

index b5e220a..2241604 100644 (file)
@@ -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';
index 45fe021..62fd4c5 100644 (file)
@@ -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