12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Application\Migrations\Schema\V111;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- use Doctrine\DBAL\Types\Type;
- class Version20160418093800 extends AbstractMigrationChamilo
- {
-
- public function up(Schema $schema)
- {
- $cQuizTable = $schema->getTable('c_quiz');
- $cQuizTable->addColumn('save_correct_answers', Type::BOOLEAN);
- }
-
- public function down(Schema $schema)
- {
- }
- }
|