1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Change share entry behavior

This commit is contained in:
Nicolas Lœuillet 2016-08-23 16:49:12 +02:00
parent 3377c938f8
commit f1be7af446
17 changed files with 81 additions and 23 deletions

View file

@ -28,18 +28,6 @@ class Version20160410190541 extends AbstractMigration implements ContainerAwareI
$this->addSql('ALTER TABLE `wallabag_entry` ADD `uuid` LONGTEXT DEFAULT NULL');
}
public function postUp(Schema $schema)
{
$em = $this->container->get('doctrine.orm.entity_manager');
$repository = $em->getRepository('WallabagCoreBundle:Entry');
$entries = $repository->findAll();
/** @var Entry $entry */
foreach ($entries as $entry) {
$this->addSql('UPDATE `wallabag_entry` SET `uuid` = "'.uniqid('', true).'" WHERE id = '.$entry->getId());
}
}
/**
* @param Schema $schema
*/