parent
70d4441d56
commit
4b5689eae0
@ -0,0 +1,40 @@ |
|||||||
|
<?php |
||||||
|
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
|
namespace Application\Migrations\Schema\V111; |
||||||
|
|
||||||
|
use Application\Migrations\AbstractMigrationChamilo; |
||||||
|
use Doctrine\DBAL\Schema\Schema; |
||||||
|
use Doctrine\DBAL\Types\Type; |
||||||
|
|
||||||
|
/** |
||||||
|
* Class Version20160715122300 |
||||||
|
* Add association mapping between Session and CStudentPublication |
||||||
|
* @package Application\Migrations\Schema\V111 |
||||||
|
*/ |
||||||
|
class Version20160715122300 extends AbstractMigrationChamilo |
||||||
|
{ |
||||||
|
/** |
||||||
|
* @param Schema $schema |
||||||
|
* @throws \Doctrine\DBAL\DBALException |
||||||
|
* @throws \Doctrine\DBAL\Schema\SchemaException |
||||||
|
*/ |
||||||
|
public function up(Schema $schema) |
||||||
|
{ |
||||||
|
$this->addSql('ALTER TABLE c_student_publication CHANGE session_id session_id INT DEFAULT NULL'); |
||||||
|
$this->addSql('UPDATE c_student_publication SET session_id = NULL WHERE session_id = 0'); |
||||||
|
$this->addSql('ALTER TABLE c_student_publication ADD CONSTRAINT fk_session FOREIGN KEY (session_id) REFERENCES session (id)'); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @param Schema $schema |
||||||
|
* @throws \Doctrine\DBAL\DBALException |
||||||
|
* @throws \Doctrine\DBAL\Schema\SchemaException |
||||||
|
*/ |
||||||
|
public function down(Schema $schema) |
||||||
|
{ |
||||||
|
$studentPublication = $schema->getTable('c_student_publication'); |
||||||
|
$studentPublication->removeForeignKey('fk_session'); |
||||||
|
$studentPublication->getColumn('session_id')->setNotnull(true); |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue