Hi
I have been following the tutorial on http://doc.silverstripe.org/old/recipes:extending_the_event_calendar and have been having problems trying to add the location when I am extending CalendarDateTime.
I have copied the code from the tutorial exactly and everything works fine up until I get to the following part of the tutorial and when i rebuild the database there is no location on the Date and Time tab.
<?php
class WorkshopDateTime extends CalendarDateTime
{
static $db = array (
'Location' => 'Varchar(50)'
);
static $has_one = array (
'Workshop' => 'Workshop'
);
}
static $has_many = array (
'Dates' => 'WorkshopDateTime'
);
?>
Any help would be much appreciated
Thanks