Bug 23152: Implement koha_object[s]_class when needed
[koha-equinox.git] / Koha / Schema / Result / ClubEnrollmentField.pm
index 6ba0fde..9067bcb 100644 (file)
@@ -43,7 +43,7 @@ __PACKAGE__->table("club_enrollment_fields");
 
 =head2 value
 
-  data_type: 'text'
+  data_type: 'mediumtext'
   is_nullable: 0
 
 =cut
@@ -56,7 +56,7 @@ __PACKAGE__->add_columns(
   "club_template_enrollment_field_id",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
   "value",
-  { data_type => "text", is_nullable => 0 },
+  { data_type => "mediumtext", is_nullable => 0 },
 );
 
 =head1 PRIMARY KEY
@@ -104,9 +104,14 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-01-12 09:56:17
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2ANAs3mh3i/kd3Qxrcd5IA
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tr8INu1+veRdWkRT4BgBOQ
 
+sub koha_object_class {
+    'Koha::Club::Enrollment::Field';
+}
+sub koha_objects_class {
+    'Koha::Club::Enrollment::Fields';
+}
 
-# You can replace this text with custom content, and it will be preserved on regeneration
 1;