diff --git a/Literature/lib/Literature/Schema/Result/Character.pm b/Literature/lib/Literature/Schema/Result/Character.pm deleted file mode 100644 index 66bc26b..0000000 --- a/Literature/lib/Literature/Schema/Result/Character.pm +++ /dev/null @@ -1,76 +0,0 @@ -use utf8; -package Literature::Schema::Result::Character; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Literature::Schema::Result::Character - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 COMPONENTS LOADED - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->load_components("InflateColumn::DateTime"); - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("character"); - -=head1 ACCESSORS - -=head2 id - - data_type: 'integer' - is_nullable: 0 - -=head2 name - - data_type: 'varchar' - is_nullable: 0 - size: 255 - -=cut - -__PACKAGE__->add_columns( - "id", - { data_type => "integer", is_nullable => 0 }, - "name", - { data_type => "varchar", is_nullable => 0, size => 255 }, -); - -=head1 PRIMARY KEY - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->set_primary_key("id"); - - -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-01 12:22:59 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Uik0XqoMCthAw/Cb+JzSpg - - -# You can replace this text with custom code or comments, and it will be preserved on regeneration -1;