~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-10-08 18:54:29 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20131008185429-8r3ao97k5z15l325
Tags: 2.3.0-1
New upstream version 2.3.0

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
 
}