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