~ubuntu-branches/ubuntu/wily/php-horde-cache/wily

« back to all changes in this revision

Viewing changes to Horde_Cache-2.2.1/migration/Horde/Cache/2_horde_cache_fix_blob_length.php

  • Committer: Package Import Robot
  • Author(s): Mathieu Parent
  • Date: 2013-08-10 19:53:57 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20130810195357-empm8uhqxxb7vk5n
Tags: 2.2.1-1
New upstream version 2.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
class HordeCacheFixBlobLength extends Horde_Db_Migration_Base
 
3
{
 
4
    public function up()
 
5
    {
 
6
        $this->changeColumn('horde_cache', 'cache_data', 'binary');
 
7
    }
 
8
 
 
9
    public function down()
 
10
    {
 
11
    }
 
12
}