This reverts commit c9dda7c3da.
1.10.x
parent
99fc849ffa
commit
317b458a26
@ -1,41 +0,0 @@ |
|||||||
<?php |
|
||||||
/* For licensing terms, see /license.txt */ |
|
||||||
|
|
||||||
namespace Application\Migrations\Schema\V110; |
|
||||||
|
|
||||||
use Application\Migrations\AbstractMigrationChamilo; |
|
||||||
use Doctrine\DBAL\Schema\Schema; |
|
||||||
|
|
||||||
/** |
|
||||||
* Class Version20170626091800 |
|
||||||
* |
|
||||||
* Create extrafield to make survey as mandatory |
|
||||||
* |
|
||||||
* @package Application\Migrations\Schema\V111 |
|
||||||
*/ |
|
||||||
class Version20170626091800 extends AbstractMigrationChamilo |
|
||||||
{ |
|
||||||
|
|
||||||
/** |
|
||||||
* @param \Doctrine\DBAL\Schema\Schema $schema |
|
||||||
*/ |
|
||||||
public function up(Schema $schema) |
|
||||||
{ |
|
||||||
$this->addSql(" |
|
||||||
INSERT INTO extra_field |
|
||||||
(extra_field_type, field_type, variable, display_text, visible, changeable, created_at) |
|
||||||
VALUES (12, 13, 'is_mandatory', 'IsMandatory', 1, 1, NOW()); |
|
||||||
"); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* @param \Doctrine\DBAL\Schema\Schema $schema |
|
||||||
*/ |
|
||||||
public function down(Schema $schema) |
|
||||||
{ |
|
||||||
$this->addSql(" |
|
||||||
DELETE FROM extra_field |
|
||||||
WHERE extra_field_type = 12 AND field_type = 13 AND variable = 'is_mandatory'; |
|
||||||
"); |
|
||||||
} |
|
||||||
} |
|
||||||
Loading…
Reference in new issue