Skip to content

Commit

Permalink
Bug: 14061 Fix copy/paste error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Aug 1, 2015
1 parent 3343784 commit f4db238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mnemo/migration/8_mnemo_fix_desc_size.php
Expand Up @@ -26,14 +26,14 @@ class MnemoFixDescSize extends Horde_Db_Migration_Base
*/
public function up()
{
$t->column('memo_desc', 'string', array('limit' => 255, 'null' => false));
$this->changeColumn('mnemo_memos', 'memo_desc', 'string', array('limit' => 255, 'null' => false));
}

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

0 comments on commit f4db238

Please sign in to comment.