Bug 10021: Remove accountlines columns - DBIC Schema changes
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 23 Oct 2017 15:27:58 +0000 (12:27 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 11 Dec 2017 14:34:18 +0000 (11:34 -0300)
Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha/Schema/Result/Accountline.pm

index d09a402..daafd2b 100644 (file)
@@ -100,18 +100,6 @@ __PACKAGE__->table("accountlines");
   default_value: current_timestamp
   is_nullable: 0
 
-=head2 notify_id
-
-  data_type: 'integer'
-  default_value: 0
-  is_nullable: 0
-
-=head2 notify_level
-
-  data_type: 'integer'
-  default_value: 0
-  is_nullable: 0
-
 =head2 note
 
   data_type: 'text'
@@ -161,10 +149,6 @@ __PACKAGE__->add_columns(
     default_value => \"current_timestamp",
     is_nullable => 0,
   },
-  "notify_id",
-  { data_type => "integer", default_value => 0, is_nullable => 0 },
-  "notify_level",
-  { data_type => "integer", default_value => 0, is_nullable => 0 },
   "note",
   { data_type => "text", is_nullable => 1 },
   "manager_id",
@@ -251,8 +235,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-20 16:27:04
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gCCyA5hOqI3EG3bIxsgpKA
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-23 12:27:23
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:S70xVMIJONd30d0kDrgF2A
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration