Skip to content

Commit

Permalink
Add index to speed searches on c_tool joins
Browse files Browse the repository at this point in the history
  • Loading branch information
ywarnier committed Sep 30, 2016
1 parent dd4b76f commit 37ee424
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions app/Migrations/Schema/V111/Version20160929120000.php
@@ -0,0 +1,42 @@
<?php
/* For licensing terms, see /license.txt */

namespace Application\Migrations\Schema\V111;

use Application\Migrations\AbstractMigrationChamilo;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Types\Type;

/**
* Class Version20160929120000
* Change tables engine to InnoDB
* @package Application\Migrations\Schema\V111
*/
class Version20160929120000 extends AbstractMigrationChamilo
{
/**
* @param Schema $schema
* @throws \Doctrine\DBAL\DBALException
* @throws \Doctrine\DBAL\Schema\SchemaException
*/
public function up(Schema $schema)
{
$this->addSql("ALTER TABLE c_tool ADD INDEX idx_ctool_name (name(20))");
}

/**
* @param Schema $schema
* @throws \Doctrine\DBAL\DBALException
* @throws \Doctrine\DBAL\Schema\SchemaException
*/
public function down(Schema $schema)
{
foreach ($this->names as $name) {
if (!$schema->hasTable($name)) {
continue;
}

$this->addSql("ALTER TABLE c_tool DROP INDEX idx_ctool_name");
}
}
}

0 comments on commit 37ee424

Please sign in to comment.