https://bugs.contribs.org/show_bug.cgi?id=10488
--- Comment #6 from John H. Bennett III <[email protected]> ---
(In reply to John Crisp from comment #5)
> Thanks John.
>
> Not sure if you saw this but I had to add this in MySQL
>
> >OK, seems there was a missing table on my home box. No idea why?
>
> Fixed with:
>
> ALTER TABLE `kronolith_events` ADD `event_timezone` VARCHAR( 50 ) CHARACTER
> SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT '';
Yes, I saw this, but that table is created during the horde db migration event.
I have that on my production server, and I see it on a test server that I just
installed fresh and migrated to Horde 5.
The file is located here,
/home/httpd/html/horde/kronolith/migration/20_kronolith_upgrade_timezone.php
The contents are:
<?php
/**
* Adds timezone fields to events.
*
* Copyright 2011-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.horde.org/licenses/gpl.
*
* @author Jan Schneider <[email protected]>
* @category Horde
* @license http://www.horde.org/licenses/gpl GPL
* @package Kronolith
*/
class KronolithUpgradeTimezone extends Horde_Db_Migration_Base
{
/**
* Upgrade.
*/
public function up()
{
$this->addColumn('kronolith_events', 'event_timezone', 'string',
array('limit' => 50));
}
/**
* Downgrade
*/
public function down()
{
$this->removeColumn('kronolith_events', 'event_timezone');
}
}
--
You are receiving this mail because:
You are the QA Contact for the bug._______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/