23 lines
433 B
PHP
23 lines
433 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace oat\taoLti\migrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use oat\tao\scripts\tools\migrations\AbstractMigration;
|
|
use oat\tao\scripts\update\OntologyUpdater;
|
|
|
|
final class Version202009171027563772_taoLti extends AbstractMigration
|
|
{
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
OntologyUpdater::syncModels();
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
}
|
|
}
|