From 71906e2b1a7665729a9129bd1bf424a8a339cbdc Mon Sep 17 00:00:00 2001 From: "Stefan Hornburg (Racke)" Date: Sun, 7 Aug 2016 15:36:19 +0200 Subject: [PATCH] Add new fields uri, logo and email to Conference class (#91). --- lib/PerlDance/Schema/Result/Conference.pm | 36 +++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/lib/PerlDance/Schema/Result/Conference.pm b/lib/PerlDance/Schema/Result/Conference.pm index a05a646..9372201 100644 --- a/lib/PerlDance/Schema/Result/Conference.pm +++ b/lib/PerlDance/Schema/Result/Conference.pm @@ -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 "2016@perl.dance". + +=cut + +column email => { + data_type => "varchar", + size => 255, + is_nullable => 1, +}; + =head2 start_date Start date of conference