]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20160410190541.php
Change share entry behavior
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20160410190541.php
1 <?php
2
3 namespace Application\Migrations;
4
5 use Doctrine\DBAL\Migrations\AbstractMigration;
6 use Doctrine\DBAL\Schema\Schema;
7 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
8 use Symfony\Component\DependencyInjection\ContainerInterface;
9 use Wallabag\CoreBundle\Entity\Entry;
10
11 class Version20160410190541 extends AbstractMigration implements ContainerAwareInterface
12 {
13 /**
14 * @var ContainerInterface
15 */
16 private $container;
17
18 public function setContainer(ContainerInterface $container = null)
19 {
20 $this->container = $container;
21 }
22
23 /**
24 * @param Schema $schema
25 */
26 public function up(Schema $schema)
27 {
28 $this->addSql('ALTER TABLE `wallabag_entry` ADD `uuid` LONGTEXT DEFAULT NULL');
29 }
30
31 /**
32 * @param Schema $schema
33 */
34 public function down(Schema $schema)
35 {
36 $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'sqlite', 'This down migration can\'t be executed on SQLite databases, because SQLite don\'t support DROP COLUMN.');
37 $this->addSql('ALTER TABLE `wallabag_entry` DROP `uuid`');
38 }
39 }