From 18cbfd35669ea9226be726da7a201fbcefa79fba Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 13 Oct 2015 12:10:58 -0300 Subject: [PATCH] Bug 10020: (RM followup) DBIx update / delete leftover file Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Ethnicity.pm | 66 ----------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 Koha/Schema/Result/Ethnicity.pm diff --git a/Koha/Schema/Result/Ethnicity.pm b/Koha/Schema/Result/Ethnicity.pm deleted file mode 100644 index 039fcb7..0000000 --- a/Koha/Schema/Result/Ethnicity.pm +++ /dev/null @@ -1,66 +0,0 @@ -use utf8; -package Koha::Schema::Result::Ethnicity; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Koha::Schema::Result::Ethnicity - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("ethnicity"); - -=head1 ACCESSORS - -=head2 code - - data_type: 'varchar' - default_value: (empty string) - is_nullable: 0 - size: 10 - -=head2 name - - data_type: 'varchar' - is_nullable: 1 - size: 255 - -=cut - -__PACKAGE__->add_columns( - "code", - { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, - "name", - { data_type => "varchar", is_nullable => 1, size => 255 }, -); - -=head1 PRIMARY KEY - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->set_primary_key("code"); - - -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HPwxTCHuS0ZYGSznK4laEA - - -# You can replace this text with custom content, and it will be preserved on regeneration -1; -- 2.6.1