The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use utf8;
package DB::Tutorial::DBIx::Class::PT::BR::Result::Amigo;

# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE

=head1 NAME

DB::Tutorial::DBIx::Class::PT::BR::Result::Amigo

=cut

use strict;
use warnings;

use base 'DBIx::Class::Core';

=head1 TABLE: C<amigo>

=cut

__PACKAGE__->table("amigo");

=head1 ACCESSORS

=head2 id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0
  sequence: 'amigo_id_seq'

=head2 nome

  data_type: 'text'
  is_nullable: 1

=head2 amigo_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

=cut

__PACKAGE__->add_columns(
  "id",
  {
    data_type         => "integer",
    is_auto_increment => 1,
    is_nullable       => 0,
    sequence          => "amigo_id_seq",
  },
  "nome",
  { data_type => "text", is_nullable => 1 },
  "amigo_id",
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
);

=head1 PRIMARY KEY

=over 4

=item * L</id>

=back

=cut

__PACKAGE__->set_primary_key("id");

=head1 RELATIONS

=head2 amigo

Type: belongs_to

Related object: L<DB::Tutorial::DBIx::Class::PT::BR::Result::Filho>

=cut

__PACKAGE__->belongs_to(
  "amigo",
  "DB::Tutorial::DBIx::Class::PT::BR::Result::Filho",
  { id => "amigo_id" },
  {
    is_deferrable => 1,
    join_type     => "LEFT",
    on_delete     => "CASCADE",
    on_update     => "CASCADE",
  },
);

=head2 namoradas

Type: has_many

Related object: L<DB::Tutorial::DBIx::Class::PT::BR::Result::Namorada>

=cut

__PACKAGE__->has_many(
  "namoradas",
  "DB::Tutorial::DBIx::Class::PT::BR::Result::Namorada",
  { "foreign.amigo_id" => "self.id" },
  { cascade_copy => 0, cascade_delete => 0 },
);


# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-08 15:14:00
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:d0+j21nYWgUCU1cUAKwmvA


# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;