1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Application\Migrations\Schema\V110;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- class Version20160808110200 extends AbstractMigrationChamilo
- {
-
- public function up(Schema $schema)
- {
- $this->addSql("UPDATE c_forum_post SET post_parent_id = NULL WHERE post_parent_id = 0");
- }
-
- public function down(Schema $schema)
- {
- $this->addSql('UPDATE c_forum_post SET post_parent_id = 0 WHERE post_parent_id = NULL');
- }
- }
|