src/CoreBundle/Migrations/Schema/V200/Version20230216122950.php
<?php
declare(strict_types=1);
namespace Chamilo\CoreBundle\Migrations\Schema\V200;
use Chamilo\CoreBundle\Migrations\AbstractMigrationChamilo;
use Doctrine\DBAL\Schema\Schema;
final class Version20230216122950 extends AbstractMigrationChamilo
{
public function getDescription(): string
{
return 'Alter tables required in configuration';
}
public function up(Schema $schema): void
{
if ($schema->hasTable('ticket_ticket')) {
$table = $schema->getTable('ticket_ticket');
if (!$table->hasColumn('exercise_id')) {
$this->addSql(
'ALTER TABLE ticket_ticket ADD exercise_id INT DEFAULT NULL'
);
}
if (!$table->hasColumn('lp_id')) {
$this->addSql(
'ALTER TABLE ticket_ticket ADD lp_id INT DEFAULT NULL'
);
}
}
if ($schema->hasTable('c_quiz_question_rel_category')) {
$table = $schema->getTable('c_quiz_question_rel_category');
if (!$table->hasColumn('mandatory')) {
$this->addSql(
'ALTER TABLE c_quiz_question_rel_category ADD COLUMN mandatory INT DEFAULT 0'
);
}
}
if (!$schema->hasTable('c_plagiarism_compilatio_docs')) {
$this->addSql(
'CREATE TABLE c_plagiarism_compilatio_docs (id INT AUTO_INCREMENT NOT NULL, c_id INT NOT NULL, document_id INT NOT NULL, compilatio_id VARCHAR(32) DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB ROW_FORMAT = DYNAMIC'
);
}
if (!$schema->hasTable('notification_event')) {
$this->addSql(
'CREATE TABLE notification_event (id INT AUTO_INCREMENT NOT NULL, title VARCHAR(255) NOT NULL, content LONGTEXT DEFAULT NULL, link LONGTEXT DEFAULT NULL, persistent INT DEFAULT NULL, day_diff INT DEFAULT NULL, event_type VARCHAR(255) NOT NULL, event_id INT DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB ROW_FORMAT = DYNAMIC'
);
}
if ($schema->hasTable('system_template')) {
$table = $schema->getTable('system_template');
if (!$table->hasColumn('language')) {
$this->addSql(
'ALTER TABLE system_template ADD language VARCHAR(40) NOT NULL DEFAULT "english"'
);
}
}
if (!$schema->hasTable('portfolio_attachment')) {
$this->addSql(
'CREATE TABLE portfolio_attachment (id INT AUTO_INCREMENT NOT NULL, path VARCHAR(255) NOT NULL, comment LONGTEXT DEFAULT NULL, size INT NOT NULL, filename VARCHAR(255) NOT NULL, origin_id INT NOT NULL, origin_type INT NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB ROW_FORMAT = DYNAMIC'
);
}
if (!$schema->hasTable('portfolio_comment')) {
$this->addSql(
'CREATE TABLE portfolio_comment (id INT AUTO_INCREMENT NOT NULL, author_id INT NOT NULL, item_id INT NOT NULL, tree_root INT DEFAULT NULL, parent_id INT DEFAULT NULL, visibility SMALLINT DEFAULT 1 NOT NULL, content LONGTEXT NOT NULL, date DATETIME NOT NULL COMMENT "(DC2Type:datetime)", is_important TINYINT(1) DEFAULT 0 NOT NULL, lft INT NOT NULL, lvl INT NOT NULL, rgt INT NOT NULL, score DOUBLE PRECISION DEFAULT NULL, is_template TINYINT(1) DEFAULT 0 NOT NULL, INDEX IDX_C2C17DA2F675F31B (author_id), INDEX IDX_C2C17DA2126F525E (item_id), INDEX IDX_C2C17DA2A977936C (tree_root), INDEX IDX_C2C17DA2727ACA70 (parent_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB ROW_FORMAT = DYNAMIC'
);
$this->addSql(
'ALTER TABLE portfolio_comment ADD CONSTRAINT FK_C2C17DA2F675F31B FOREIGN KEY (author_id) REFERENCES user (id) ON DELETE CASCADE'
);
$this->addSql(
'ALTER TABLE portfolio_comment ADD CONSTRAINT FK_C2C17DA2126F525E FOREIGN KEY (item_id) REFERENCES portfolio (id) ON DELETE CASCADE'
);
$this->addSql(
'ALTER TABLE portfolio_comment ADD CONSTRAINT FK_C2C17DA2A977936C FOREIGN KEY (tree_root) REFERENCES portfolio_comment (id) ON DELETE CASCADE'
);
$this->addSql(
'ALTER TABLE portfolio_comment ADD CONSTRAINT FK_C2C17DA2727ACA70 FOREIGN KEY (parent_id) REFERENCES portfolio_comment (id) ON DELETE CASCADE'
);
}
if ($schema->hasTable('portfolio')) {
$tblPortfolio = $schema->getTable('portfolio');
if (!$tblPortfolio->hasColumn('origin')) {
$this->addSql('ALTER TABLE portfolio ADD origin INT DEFAULT NULL');
}
if (!$tblPortfolio->hasColumn('origin_type')) {
$this->addSql('ALTER TABLE portfolio ADD origin_type INT DEFAULT NULL');
}
if (!$tblPortfolio->hasColumn('score')) {
$this->addSql('ALTER TABLE portfolio ADD score DOUBLE PRECISION DEFAULT NULL');
}
if (!$tblPortfolio->hasColumn('is_highlighted')) {
$this->addSql('ALTER TABLE portfolio ADD is_highlighted TINYINT(1) DEFAULT 0 NOT NULL');
}
if (!$tblPortfolio->hasColumn('is_template')) {
$this->addSql('ALTER TABLE portfolio ADD is_template TINYINT(1) DEFAULT 0 NOT NULL');
}
}
if (!$schema->hasTable('c_attendance_result_comment')) {
$this->addSql(
'CREATE TABLE c_attendance_result_comment (iid INT AUTO_INCREMENT NOT NULL, attendance_sheet_id INT NOT NULL, user_id INT NOT NULL, comment LONGTEXT DEFAULT NULL, created_at DATETIME NOT NULL COMMENT "(DC2Type:datetime)", updated_at DATETIME NOT NULL COMMENT "(DC2Type:datetime)", author_user_id INT NOT NULL, INDEX attendance_sheet_id (attendance_sheet_id), INDEX user_id (user_id), PRIMARY KEY(iid)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB ROW_FORMAT = DYNAMIC'
);
}
}
public function down(Schema $schema): void
{
$table = $schema->getTable('gradebook_category');
if ($table->hasColumn('allow_skills_by_subcategory')) {
$this->addSql('ALTER TABLE c_attendance_sheet DROP allow_skills_by_subcategory');
}
if ($schema->hasTable('c_attendance_result_comment')) {
$this->addSql(
'DROP TABLE c_attendance_result_comment'
);
}
$table = $schema->getTable('portfolio');
if ($table->hasColumn('origin')) {
$this->addSql('ALTER TABLE portfolio DROP origin');
}
if ($table->hasColumn('origin_type')) {
$this->addSql('ALTER TABLE portfolio DROP origin_type');
}
if ($table->hasColumn('score')) {
$this->addSql('ALTER TABLE portfolio DROP score');
}
if ($table->hasColumn('is_highlighted')) {
$this->addSql('ALTER TABLE portfolio DROP is_highlighted');
}
if ($table->hasColumn('is_template')) {
$this->addSql('ALTER TABLE portfolio DROP is_template');
}
if ($schema->hasTable('portfolio_attachment')) {
$this->addSql(
'DROP TABLE portfolio_attachment'
);
}
if ($schema->hasTable('portfolio_comment')) {
$this->addSql(
'DROP TABLE portfolio_comment'
);
}
if ($schema->hasTable('message_feedback')) {
$this->addSql(
'DROP TABLE message_feedback'
);
}
$table = $schema->getTable('system_template');
if ($table->hasColumn('language')) {
$this->addSql('ALTER TABLE system_template DROP language');
}
if ($schema->hasTable('notification_event')) {
$this->addSql(
'DROP TABLE notification_event'
);
}
if ($schema->hasTable('c_plagiarism_compilatio_docs')) {
$this->addSql(
'DROP TABLE c_plagiarism_compilatio_docs'
);
}
$table = $schema->getTable('ticket_ticket');
if ($table->hasColumn('exercise_id')) {
$this->addSql('ALTER TABLE ticket_ticket DROP exercise_id');
}
if ($table->hasColumn('lp_id')) {
$this->addSql('ALTER TABLE ticket_ticket DROP lp_id');
}
$table = $schema->getTable('c_quiz_question_rel_category');
if ($table->hasColumn('mandatory')) {
$this->addSql('ALTER TABLE c_quiz_question_rel_category DROP mandatory');
}
}
}