Skip to content

Commit

Permalink
Change search attribute to VARCHAR to work with Oracle.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Oct 23, 2014
1 parent 2694237 commit 086e5d9
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions nag/migration/14_nag_upgrade_search.php
@@ -0,0 +1,39 @@
<?php
/**
* Copyright 2014 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 <jan@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/gpl GPL
* @package Nag
*/

/**
* Fixes the type of the parents column.
*
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/gpl GPL
* @package Nag
*/
class NagUpgradeSearch extends Horde_Db_Migration_Base
{
/**
* Upgrade.
*/
public function up()
{
$this->changeColumn('nag_shares', 'attribute_search', 'string', array('limit' => 4000));
}

/**
* Downgrade
*/
public function down()
{
$this->changeColumn('nag_shares', 'attribute_search', 'text');
}
}

0 comments on commit 086e5d9

Please sign in to comment.