Bug 21065: Add koha_object(s)_class methods to accountline
[koha_ffzg] / Koha / Schema / Result / Accountline.pm
index d09a402..2545995 100644 (file)
@@ -67,19 +67,20 @@ __PACKAGE__->table("accountlines");
 
 =head2 description
 
-  data_type: 'mediumtext'
+  data_type: 'longtext'
   is_nullable: 1
 
-=head2 dispute
+=head2 accounttype
 
-  data_type: 'mediumtext'
+  data_type: 'varchar'
   is_nullable: 1
+  size: 5
 
-=head2 accounttype
+=head2 payment_type
 
   data_type: 'varchar'
   is_nullable: 1
-  size: 5
+  size: 80
 
 =head2 amountoutstanding
 
@@ -100,21 +101,9 @@ __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'
+  data_type: 'mediumtext'
   is_nullable: 1
 
 =head2 manager_id
@@ -145,11 +134,11 @@ __PACKAGE__->add_columns(
   "amount",
   { data_type => "decimal", is_nullable => 1, size => [28, 6] },
   "description",
-  { data_type => "mediumtext", is_nullable => 1 },
-  "dispute",
-  { data_type => "mediumtext", is_nullable => 1 },
+  { data_type => "longtext", is_nullable => 1 },
   "accounttype",
   { data_type => "varchar", is_nullable => 1, size => 5 },
+  "payment_type",
+  { data_type => "varchar", is_nullable => 1, size => 80 },
   "amountoutstanding",
   { data_type => "decimal", is_nullable => 1, size => [28, 6] },
   "lastincrement",
@@ -161,12 +150,8 @@ __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 },
+  { data_type => "mediumtext", is_nullable => 1 },
   "manager_id",
   { data_type => "integer", is_nullable => 1 },
 );
@@ -251,9 +236,14 @@ __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 @ 2018-05-16 17:00:24
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pygYYKxFDRLX97PyeUeLvg
 
+sub koha_objects_class {
+    'Koha::Account::Lines';
+}
+sub koha_object_class {
+    'Koha::Account::Line';
+}
 
-# You can replace this text with custom content, and it will be preserved on regeneration
 1;