aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations/Version20161109150755.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-09 18:19:08 +0100
committerGitHub <noreply@github.com>2016-11-09 18:19:08 +0100
commit644b340178136ef9465fdc3cf40f1de0f5f8c3d3 (patch)
treee8168f9f3ee9e9635316c01fb826914098ba65bb /app/DoctrineMigrations/Version20161109150755.php
parent1e8c7fa5f946bd63f0650392b76115f5ae8a45de (diff)
parent8a9604aafe8b8c6ddde4e1be78189af5238588fb (diff)
downloadwallabag-644b340178136ef9465fdc3cf40f1de0f5f8c3d3.tar.gz
wallabag-644b340178136ef9465fdc3cf40f1de0f5f8c3d3.tar.zst
wallabag-644b340178136ef9465fdc3cf40f1de0f5f8c3d3.zip
Merge pull request #2566 from wallabag/add-unmarkit
Added unmark.it sharing
Diffstat (limited to 'app/DoctrineMigrations/Version20161109150755.php')
-rw-r--r--app/DoctrineMigrations/Version20161109150755.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20161109150755.php b/app/DoctrineMigrations/Version20161109150755.php
new file mode 100644
index 00000000..e4d269c4
--- /dev/null
+++ b/app/DoctrineMigrations/Version20161109150755.php
@@ -0,0 +1,40 @@
1<?php
2
3namespace Application\Migrations;
4
5use Doctrine\DBAL\Migrations\AbstractMigration;
6use Doctrine\DBAL\Schema\Schema;
7use Symfony\Component\DependencyInjection\ContainerAwareInterface;
8use Symfony\Component\DependencyInjection\ContainerInterface;
9
10class Version20161031132655 extends AbstractMigration implements ContainerAwareInterface
11{
12 /**
13 * @var ContainerInterface
14 */
15 private $container;
16 public function setContainer(ContainerInterface $container = null)
17 {
18 $this->container = $container;
19 }
20 private function getTable($tableName)
21 {
22 return $this->container->getParameter('database_table_prefix') . $tableName;
23 }
24 /**
25 * @param Schema $schema
26 */
27 public function up(Schema $schema)
28 {
29 $this->addSql("INSERT INTO \"".$this->getTable('craue_config_setting')."\" (name, value, section) VALUES ('share_unmark', 0, 'entry')");
30 $this->addSql("INSERT INTO \"".$this->getTable('craue_config_setting')."\" (name, value, section) VALUES ('unmark_url', 'https://unmark.it', 'entry')");
31 }
32 /**
33 * @param Schema $schema
34 */
35 public function down(Schema $schema)
36 {
37 $this->addSql("DELETE FROM \"".$this->getTable('craue_config_setting')."\" WHERE name = 'share_unmark';");
38 $this->addSql("DELETE FROM \"".$this->getTable('craue_config_setting')."\" WHERE name = 'unmark_url';");
39 }
40}