use utf8;
package DBIC::Demo::Result::Cd;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
DBIC::Demo::Result::Cd
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<cds>
=cut
__PACKAGE__->table("cds");
=head1 ACCESSORS
=head2 id
data_type: 'integer'
is_auto_increment: 1
is_nullable: 0
sequence: 'cds_id_seq'
=head2 artist_id
data_type: 'integer'
is_foreign_key: 1
is_nullable: 0
=head2 title
data_type: 'text'
is_nullable: 0
original: {data_type => "varchar"}
=cut
__PACKAGE__->add_columns(
"id",
{
data_type => "integer",
is_auto_increment => 1,
is_nullable => 0,
sequence => "cds_id_seq",
},
"artist_id",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
"title",
{
data_type => "text",
is_nullable => 0,
original => { data_type => "varchar" },
},
);
=head1 PRIMARY KEY
39,1 Top