Migration1673964565MigrateToReferencedColumns example


class Migration1673964565MigrateToReferencedColumnsTest extends TestCase
{
    private Connection $connection;

    private Migration1673964565MigrateToReferencedColumns $migration;

    protected function setUp(): void
    {
        Feature::skipTestIfInActive('v6.6.0.0', $this);

        $this->migration = new Migration1673964565MigrateToReferencedColumns();
        $this->connection = KernelLifecycleManager::getConnection();
    }

    public function testGetCreationTimestamp(): void
    {
        static::assertEquals('1673964565', $this->migration->getCreationTimestamp());
    }

    public function testUpdate(): void
    {
        $this->migration->update($this->connection);

        
Home | Imprint | This part of the site doesn't use cookies.