upgrade app

This commit is contained in:
Xes
2025-08-14 22:33:03 +02:00
parent d862a535e5
commit 2fe1c43b3e
39284 changed files with 991979 additions and 0 deletions

View File

@@ -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;
/**
* 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)
{
error_log('Version20160929120000');
$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");
}
}
}