Created
November 8, 2018 11:32
-
-
Save spyl94/d036263d0e3ba9bca301e6b61ab72c8e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Migrations; | |
use Doctrine\DBAL\Schema\Schema; | |
use CapCollectif\IdToUuid\IdToUuidMigration; | |
class VersionXYZ extends IdToUuidMigration | |
{ | |
public function postUp(Schema $schema) | |
{ | |
$this->migrate('user'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment