Skip to content

Commit

Permalink
Add missing migration.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Sep 12, 2016
1 parent c68b27f commit 130f087
Showing 1 changed file with 17 additions and 0 deletions.
@@ -0,0 +1,17 @@
<?php
class HordeActiveSyncAddMailMapDraftFlag extends Horde_Db_Migration_Base
{
public function up()
{
$this->addColumn(
'horde_activesync_mailmap',
'sync_draft',
'boolean');
}

public function down()
{
$this->removeColumn('horde_activesync_mailmap', 'sync_draft');
}

}

0 comments on commit 130f087

Please sign in to comment.