123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Application\Migrations\Schema\V111;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- use Doctrine\DBAL\Types\Type;
- class Version20160705190000 extends AbstractMigrationChamilo
- {
-
- public function up(Schema $schema)
- {
- $this->addSql("ALTER TABLE c_lp ADD COLUMN accumulate_scorm_time INT NOT NULL DEFAULT 1");
- }
-
- public function down(Schema $schema)
- {
- $this->addSql("ALTER TABLE c_lp DROP COLUMN accumulate_scorm_time");
- }
- }
|