Fixing migrations namespaces

skala
Julio Montoya 12 years ago
parent 4ee0c34b3e
commit baf85d845f
  1. 21
      src/ChamiloLMS/Migrations/Version10.php
  2. 2
      src/ChamiloLMS/Migrations/Version11.php
  3. 2
      src/ChamiloLMS/Migrations/Version8.php
  4. 2
      src/ChamiloLMS/Migrations/Version9.php
  5. 2
      src/ChamiloLMS/Migrations/migrations.yml

@ -1,6 +1,6 @@
<?php
namespace ChamiloLMS\Controller\Migrations;
namespace ChamiloLMS\Migrations;
use Doctrine\DBAL\Migrations\AbstractMigration,
Doctrine\DBAL\Schema\Schema;
@ -11,13 +11,28 @@ use Doctrine\DBAL\Migrations\AbstractMigration,
*/
class Version10 extends AbstractMigration
{
/**
* Chamilo upgrade
* @param Schema $schema
*/
public function up(Schema $schema)
{
$this->addSql('UPDATE settings_current SET selected_value = "1.10" WHERE variable = "chamilo_database_version"');
$this->addSql("UPDATE settings_current SET selected_value = '1.10' WHERE variable = 'chamilo_database_version'");
//@todo change this into a function
$this->addSql("INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('allow_web_profiler', NULL,'radio','Portal','false','AllowTeachersToCreateSessionsTitle','AllowTeachersToCreateSessionsComment', NULL, NULL, 0)");
$this->addSql("INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_web_profiler', 'true', 'Yes')");
$this->addSql("INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_web_profiler', 'false', 'No')");
}
/**
* Chamilo downgrade
* @param Schema $schema
*/
public function down(Schema $schema)
{
$this->addSql('UPDATE settings_current SET selected_value = "1.9" WHERE variable = "chamilo_database_version"');
$this->addSql("UPDATE settings_current SET selected_value = '1.9' WHERE variable = 'chamilo_database_version'");
$this->addSql("DELETE FROM settings_current WHERE variable = 'allow_web_profiler'");
$this->addSql("DELETE FROM settings_options WHERE variable = 'allow_web_profiler'");
}
}

@ -1,6 +1,6 @@
<?php
namespace ChamiloLMS\Controller\Migrations;
namespace ChamiloLMS\Migrations;
use Doctrine\DBAL\Migrations\AbstractMigration,
Doctrine\DBAL\Schema\Schema;

@ -1,6 +1,6 @@
<?php
namespace ChamiloLMS\Controller\Migrations;
namespace ChamiloLMS\Migrations;
use Doctrine\DBAL\Migrations\AbstractMigration,
Doctrine\DBAL\Schema\Schema;

@ -1,6 +1,6 @@
<?php
namespace ChamiloLMS\Controller\Migrations;
namespace ChamiloLMS\Migrations;
use Doctrine\DBAL\Migrations\AbstractMigration,
Doctrine\DBAL\Schema\Schema;

@ -1,4 +1,4 @@
name: Chamilo Migrations
migrations_namespace: ChamiloLMS\Controller\Migrations
migrations_namespace: ChamiloLMS\Migrations
table_name: chamilo_migration_versions
migrations_directory: src/ChamiloLMS/Migrations/
Loading…
Cancel
Save