|
|
|
@ -12,7 +12,7 @@ use Doctrine\DBAL\Schema\Schema; |
|
|
|
|
*/ |
|
|
|
|
class Version20181126174500 extends AbstractMigrationChamilo |
|
|
|
|
{ |
|
|
|
|
public function up(Schema $schema) |
|
|
|
|
public function up(Schema $schema): void |
|
|
|
|
{ |
|
|
|
|
if ($schema->hasTable('plugin_ims_lti_tool')) { |
|
|
|
|
$schema->renameTable('plugin_ims_lti_tool', 'lti_external_tool'); |
|
|
|
@ -35,7 +35,7 @@ class Version20181126174500 extends AbstractMigrationChamilo |
|
|
|
|
active_deep_linking TINYINT(1) DEFAULT \'0\' NOT NULL, |
|
|
|
|
privacy LONGTEXT DEFAULT NULL, |
|
|
|
|
INDEX IDX_DB0E04E491D79BD3 (c_id), |
|
|
|
|
INDEX IDX_DB0E04E482F80D8B (gradebook_eval_id), |
|
|
|
|
INDEX IDX_DB0E04E482F80D8B (gradebook_eval_id), |
|
|
|
|
INDEX IDX_DB0E04E4727ACA70 (parent_id), |
|
|
|
|
PRIMARY KEY(id) |
|
|
|
|
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB ROW_FORMAT = DYNAMIC' |
|
|
|
@ -53,7 +53,7 @@ class Version20181126174500 extends AbstractMigrationChamilo |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function down(Schema $schema) |
|
|
|
|
public function down(Schema $schema): void |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|