Skip to content

Commit

Permalink
Add new fields uri, logo and email to Conference class (#91).
Browse files Browse the repository at this point in the history
  • Loading branch information
racke committed Aug 7, 2016
1 parent 6b81ec9 commit 71906e2
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions lib/PerlDance/Schema/Result/Conference.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,42 @@ unique_column name => {
size => 128,
};

=head2 uri
Canonical Link to conference such as "https://www.perl.dance/"
=cut

column uri => {
data_type => "varchar",
size => 255,
is_nullable => 1,
};

=head2 logo
Conference logo such as "img/perl-dancer-2016-logo.png".
=cut

column logo => {
data_type => "varchar",
size => 255,
is_nullable => 1,
};

=head2 email
Canonical conference email address such as "[email protected]".
=cut

column email => {
data_type => "varchar",
size => 255,
is_nullable => 1,
};

=head2 start_date
Start date of conference
Expand Down

0 comments on commit 71906e2

Please sign in to comment.