]> git.donarmstrong.com Git - debbugs.git/commitdiff
delete mispelled corespondent packages
authorDon Armstrong <don@donarmstrong.com>
Wed, 23 Jan 2013 05:37:59 +0000 (21:37 -0800)
committerDon Armstrong <don@donarmstrong.com>
Wed, 10 Aug 2016 20:42:38 +0000 (13:42 -0700)
Debbugs/DB/Result/Corespondent.pm [deleted file]
Debbugs/DB/Result/MessageCorespondent.pm [deleted file]

diff --git a/Debbugs/DB/Result/Corespondent.pm b/Debbugs/DB/Result/Corespondent.pm
deleted file mode 100644 (file)
index 306ec4f..0000000
+++ /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<DBIx::Class::InflateColumn::DateTime>
-
-=back
-
-=cut
-
-__PACKAGE__->load_components("InflateColumn::DateTime");
-
-=head1 TABLE: C<corespondent>
-
-=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</id>
-
-=back
-
-=cut
-
-__PACKAGE__->set_primary_key("id");
-
-=head1 UNIQUE CONSTRAINTS
-
-=head2 C<corespondent_addr_key>
-
-=over 4
-
-=item * L</addr>
-
-=back
-
-=cut
-
-__PACKAGE__->add_unique_constraint("corespondent_addr_key", ["addr"]);
-
-=head1 RELATIONS
-
-=head2 message_corespondents
-
-Type: has_many
-
-Related object: L<Debbugs::DB::Result::MessageCorespondent>
-
-=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 (file)
index 312b2d5..0000000
+++ /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<DBIx::Class::InflateColumn::DateTime>
-
-=back
-
-=cut
-
-__PACKAGE__->load_components("InflateColumn::DateTime");
-
-=head1 TABLE: C<message_corespondent>
-
-=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<message_corespondent_message_corespondent_corespondent_type_idx>
-
-=over 4
-
-=item * L</message>
-
-=item * L</corespondent>
-
-=item * L</corespondent_type>
-
-=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<Debbugs::DB::Result::Corespondent>
-
-=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<Debbugs::DB::Result::Message>
-
-=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;