diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2018-06-15 05:25:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-15 05:25:44 +0000 |
commit | 7ebd4bdcf7427abcdf3e3938c9b8a3b9bb66bfbb (patch) | |
tree | acc9f383852c9bf33396672135275e0747dd722d /app/DoctrineMigrations/Version20160812120952.php | |
parent | 36054f5dd42413ed5877db8c50fe9f1a3c6167c6 (diff) | |
parent | 49b4c875985c7b001af711079662dd3684373229 (diff) | |
download | wallabag-7ebd4bdcf7427abcdf3e3938c9b8a3b9bb66bfbb.tar.gz wallabag-7ebd4bdcf7427abcdf3e3938c9b8a3b9bb66bfbb.tar.zst wallabag-7ebd4bdcf7427abcdf3e3938c9b8a3b9bb66bfbb.zip |
Merge pull request #3538 from wallabag/fix-migrations-dash
Fixed migrations with dash into db names
Diffstat (limited to 'app/DoctrineMigrations/Version20160812120952.php')
-rw-r--r-- | app/DoctrineMigrations/Version20160812120952.php | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/app/DoctrineMigrations/Version20160812120952.php b/app/DoctrineMigrations/Version20160812120952.php index d28f3a71..d09aefa0 100644 --- a/app/DoctrineMigrations/Version20160812120952.php +++ b/app/DoctrineMigrations/Version20160812120952.php | |||
@@ -2,27 +2,15 @@ | |||
2 | 2 | ||
3 | namespace Application\Migrations; | 3 | namespace Application\Migrations; |
4 | 4 | ||
5 | use Doctrine\DBAL\Migrations\AbstractMigration; | ||
6 | use Doctrine\DBAL\Schema\Schema; | 5 | use Doctrine\DBAL\Schema\Schema; |
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 6 | use Wallabag\CoreBundle\Doctrine\WallabagMigration; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | ||
9 | 7 | ||
10 | /** | 8 | /** |
11 | * Added name field on wallabag_oauth2_clients. | 9 | * Added name field on wallabag_oauth2_clients. |
12 | */ | 10 | */ |
13 | class Version20160812120952 extends AbstractMigration implements ContainerAwareInterface | 11 | class Version20160812120952 extends WallabagMigration |
14 | { | 12 | { |
15 | /** | 13 | /** |
16 | * @var ContainerInterface | ||
17 | */ | ||
18 | private $container; | ||
19 | |||
20 | public function setContainer(ContainerInterface $container = null) | ||
21 | { | ||
22 | $this->container = $container; | ||
23 | } | ||
24 | |||
25 | /** | ||
26 | * @param Schema $schema | 14 | * @param Schema $schema |
27 | */ | 15 | */ |
28 | public function up(Schema $schema) | 16 | public function up(Schema $schema) |
@@ -65,9 +53,4 @@ class Version20160812120952 extends AbstractMigration implements ContainerAwareI | |||
65 | $clientsTable->dropColumn('name'); | 53 | $clientsTable->dropColumn('name'); |
66 | } | 54 | } |
67 | } | 55 | } |
68 | |||
69 | private function getTable($tableName) | ||
70 | { | ||
71 | return $this->container->getParameter('database_table_prefix') . $tableName; | ||
72 | } | ||
73 | } | 56 | } |