From 8531259b40442310f99c739c8026c1d9a6a1adc6 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 22 Jan 2013 21:37:59 -0800 Subject: [PATCH] delete mispelled corespondent packages --- Debbugs/DB/Result/Corespondent.pm | 113 ------------------- Debbugs/DB/Result/MessageCorespondent.pm | 135 ----------------------- 2 files changed, 248 deletions(-) delete mode 100644 Debbugs/DB/Result/Corespondent.pm delete mode 100644 Debbugs/DB/Result/MessageCorespondent.pm diff --git a/Debbugs/DB/Result/Corespondent.pm b/Debbugs/DB/Result/Corespondent.pm deleted file mode 100644 index 306ec4f..0000000 --- a/Debbugs/DB/Result/Corespondent.pm +++ /dev/null @@ -1,113 +0,0 @@ -use utf8; -package Debbugs::DB::Result::Corespondent; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Debbugs::DB::Result::Corespondent - -=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("corespondent"); - -=head1 ACCESSORS - -=head2 id - - data_type: 'integer' - is_auto_increment: 1 - is_nullable: 0 - sequence: 'corespondent_id_seq' - -=head2 addr - - data_type: 'text' - is_nullable: 0 - -=cut - -__PACKAGE__->add_columns( - "id", - { - data_type => "integer", - is_auto_increment => 1, - is_nullable => 0, - sequence => "corespondent_id_seq", - }, - "addr", - { data_type => "text", is_nullable => 0 }, -); - -=head1 PRIMARY KEY - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->set_primary_key("id"); - -=head1 UNIQUE CONSTRAINTS - -=head2 C - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->add_unique_constraint("corespondent_addr_key", ["addr"]); - -=head1 RELATIONS - -=head2 message_corespondents - -Type: has_many - -Related object: L - -=cut - -__PACKAGE__->has_many( - "message_corespondents", - "Debbugs::DB::Result::MessageCorespondent", - { "foreign.corespondent" => "self.id" }, - { cascade_copy => 0, cascade_delete => 0 }, -); - - -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-29 15:37:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:v3bUQ+IEbhl9Z9+g6uQVDw - - -# You can replace this text with custom code or comments, and it will be preserved on regeneration -1; diff --git a/Debbugs/DB/Result/MessageCorespondent.pm b/Debbugs/DB/Result/MessageCorespondent.pm deleted file mode 100644 index 312b2d5..0000000 --- a/Debbugs/DB/Result/MessageCorespondent.pm +++ /dev/null @@ -1,135 +0,0 @@ -use utf8; -package Debbugs::DB::Result::MessageCorespondent; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Debbugs::DB::Result::MessageCorespondent - -=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("message_corespondent"); - -=head1 ACCESSORS - -=head2 message - - data_type: 'integer' - is_foreign_key: 1 - is_nullable: 0 - -=head2 corespondent - - data_type: 'integer' - is_foreign_key: 1 - is_nullable: 0 - -=head2 corespondent_type - - data_type: 'enum' - default_value: 'to' - extra: {custom_type_name => "message_corespondent_type",list => ["to","from","envfrom","cc"]} - is_nullable: 0 - -=cut - -__PACKAGE__->add_columns( - "message", - { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, - "corespondent", - { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, - "corespondent_type", - { - data_type => "enum", - default_value => "to", - extra => { - custom_type_name => "message_corespondent_type", - list => ["to", "from", "envfrom", "cc"], - }, - is_nullable => 0, - }, -); - -=head1 UNIQUE CONSTRAINTS - -=head2 C - -=over 4 - -=item * L - -=item * L - -=item * L - -=back - -=cut - -__PACKAGE__->add_unique_constraint( - "message_corespondent_message_corespondent_corespondent_type_idx", - ["message", "corespondent", "corespondent_type"], -); - -=head1 RELATIONS - -=head2 corespondent - -Type: belongs_to - -Related object: L - -=cut - -__PACKAGE__->belongs_to( - "corespondent", - "Debbugs::DB::Result::Corespondent", - { id => "corespondent" }, - { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, -); - -=head2 message - -Type: belongs_to - -Related object: L - -=cut - -__PACKAGE__->belongs_to( - "message", - "Debbugs::DB::Result::Message", - { id => "message" }, - { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, -); - - -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-29 15:37:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qc6K0oFKcXSuaQhTBgRCaw - - -# You can replace this text with custom code or comments, and it will be preserved on regeneration -1; -- 2.39.2