1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Application\Migrations\Schema\V111;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- class Version20160315155700 extends AbstractMigrationChamilo
- {
-
- public function up(Schema $schema)
- {
- $this->addSql("UPDATE settings_current SET type = 'select_course' WHERE variable = 'course_creation_use_template'");
- }
-
- public function down(Schema $schema)
- {
-
- }
- }
|