Skip to content

Commit

Permalink
Regenerated Result::Constituency to add list_name.
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Aug 15, 2014
1 parent 56b68a0 commit 17ddfc7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions lib/TwittElection/Schema/Result/Constituency.pm
Expand Up @@ -51,13 +51,21 @@ __PACKAGE__->table("constituency");
is_nullable: 0
size: 200
=head2 list_name
data_type: 'varchar'
is_nullable: 1
size: 200
=cut

__PACKAGE__->add_columns(
"id",
{ data_type => "integer", is_nullable => 0 },
"name",
{ data_type => "varchar", is_nullable => 0, size => 200 },
"list_name",
{ data_type => "varchar", is_nullable => 1, size => 200 },
);

=head1 PRIMARY KEY
Expand Down Expand Up @@ -90,8 +98,8 @@ __PACKAGE__->has_many(
);


# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-15 20:12:34
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3nXUzbwFvl5i0kTFMaVjNQ
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-15 21:16:34
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XVo8CoAkfeRnlUosED2ESw


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

0 comments on commit 17ddfc7

Please sign in to comment.