__PACKAGE__->table( 'myTable' ); =head ACCESSORS =head2 id data_type: 'integer' is_nullable: 0 =head2 title data_type: 'varchar' is_nullable: 0 size: 200 =head2 Description data_type: 'varchar' is_nullable: 1 size: max =cut __PACKAGE__->add_columns( "id" { data_type => "integer", is_nullable => 0 } "title" { data_type => "varchar", is_nullable => 0, size => 200 } "Description" { data_type => "varchar", is_nullable => 1, size => max } ); __PACKAGE__->set_primary_key("id");