Skip to content

Commit

Permalink
Bug: 14041 Add migration to fix the size of the desc field.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jul 13, 2015
1 parent 1556e70 commit e341ef1
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions mnemo/migration/8_mnemo_fix_desc_size.php
@@ -0,0 +1,39 @@
<?php
/**
* Copyright 2014-2015 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 Michael J Rubinsky <mrubinsk@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/gpl GPL
* @package Mnemo
*/

/**
* Fixes the length on the memo_desc column.
*
* @author Michael J Rubinsky <mrubinsk@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/gpl GPL
* @package Mnemo
*/
class MnemoFixDescSize extends Horde_Db_Migration_Base
{
/**
* Upgrade.
*/
public function up()
{
$t->column('memo_desc', 'string', array('limit' => 255, 'null' => false));
}

/**
* Downgrade
*/
public function down()
{
$t->column('memo_desc', 'string', array('limit' => 64, 'null' => false));
}
}

0 comments on commit e341ef1

Please sign in to comment.