12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /* For licensing terms, see /license.txt */
- namespace Application\Migrations\Schema\V111;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- /**
- * Class Version20161028123400
- * Add primary key as auto increment in c_student_publication_comment
- * @package Application\Migrations\Schema\V111
- */
- class Version20161028123400 extends AbstractMigrationChamilo
- {
- /**
- * @param Schema $schema
- */
- public function up(Schema $schema)
- {
- $iidColumn = $schema
- ->getTable('c_student_publication_comment')
- ->getColumn('iid');
- if (!$iidColumn->getAutoincrement()) {
- $iidColumn->setAutoincrement(true);
- }
- // Deleting users that don't exist anymore
- $sql = 'DELETE FROM access_url_rel_user WHERE user_id NOT IN (SELECT user_id from user)';
- $this->addSql($sql);
- $table = $schema->getTable('personal_agenda');
- if ($table->hasIndex('id')) {
- $this->addSql('ALTER TABLE personal_agenda modify id INT NOT NULL');
- $this->addSql('ALTER TABLE personal_agenda DROP index id');
- $this->addSql('ALTER TABLE personal_agenda DROP PRIMARY KEY');
- $this->addSql('ALTER TABLE personal_agenda CHANGE id id INT AUTO_INCREMENT NOT NULL PRIMARY KEY');
- }
- }
- /**
- * @param Schema $schema
- */
- public function down(Schema $schema)
- {
- $schema
- ->getTable('c_student_publication_comment')
- ->getColumn('iid')
- ->setAutoincrement(false);
- }
- }
|