123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace Application\Migrations\Schema\V111;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- use Doctrine\DBAL\Types\Type;
- class Version20160701110000 extends AbstractMigrationChamilo
- {
-
- public function up(Schema $schema)
- {
- $this->addSql("INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('course_creation_splash_screen',NULL,'radio','Course','true','CourseCreationSplashScreenTitle','CourseCreationSplashScreenComment','',NULL, 1)");
- $this->addSql("INSERT INTO settings_options (variable, value, display_text) VALUES ('course_creation_splash_screen','true','Yes') ");
- $this->addSql("INSERT INTO settings_options (variable, value, display_text) VALUES ('course_creation_splash_screen','false','No') ");
- }
-
- public function down(Schema $schema)
- {
- $this->addSql("DELETE FROM settings_current WHERE variable = 'course_creation_splash_screen'");
- $this->addSql("DELETE FROM settings_options WHERE variable = 'course_creation_splash_screen'");
- }
- }
|