aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-05-10 11:24:59 +0200
committerGitHub <noreply@github.com>2017-05-10 11:24:59 +0200
commit7987816d1e83267199c170279213412c6086e665 (patch)
tree285efbefc7d16475984f6f2bc842323883871959
parent09edbff336a22061d8cac41b1c1e9faa7629d5c6 (diff)
parent8c3158eba8654509a8c5e0323d4f37b01488b011 (diff)
downloadwallabag-7987816d1e83267199c170279213412c6086e665.tar.gz
wallabag-7987816d1e83267199c170279213412c6086e665.tar.zst
wallabag-7987816d1e83267199c170279213412c6086e665.zip
Merge pull request #3104 from wallabag/migration-username-length
Added migration to change length for user fields
-rw-r--r--app/DoctrineMigrations/Version20170510082609.php60
1 files changed, 60 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20170510082609.php b/app/DoctrineMigrations/Version20170510082609.php
new file mode 100644
index 00000000..a99af2d2
--- /dev/null
+++ b/app/DoctrineMigrations/Version20170510082609.php
@@ -0,0 +1,60 @@
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
10/**
11 * Changed length for username, username_canonical, email and email_canonical fields in wallabag_user table.
12 */
13class Version20170510082609 extends AbstractMigration implements ContainerAwareInterface
14{
15 private $fields = [
16 'username',
17 'username_canonical',
18 'email',
19 'email_canonical',
20 ];
21
22 /**
23 * @var ContainerInterface
24 */
25 private $container;
26
27 public function setContainer(ContainerInterface $container = null)
28 {
29 $this->container = $container;
30 }
31
32 private function getTable($tableName)
33 {
34 return $this->container->getParameter('database_table_prefix').$tableName;
35 }
36
37 /**
38 * @param Schema $schema
39 */
40 public function up(Schema $schema)
41 {
42 $this->skipIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'This migration only apply to MySQL');
43
44 foreach ($this->fields as $field) {
45 $this->addSql('ALTER TABLE '.$this->getTable('user').' CHANGE '.$field.' '.$field.' VARCHAR(180) NOT NULL;');
46 }
47 }
48
49 /**
50 * @param Schema $schema
51 */
52 public function down(Schema $schema)
53 {
54 $this->skipIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'This migration only apply to MySQL');
55
56 foreach ($this->fields as $field) {
57 $this->addSql('ALTER TABLE '.$this->getTable('user').' CHANGE '.$field.' '.$field.' VARCHAR(255) NOT NULL;');
58 }
59 }
60}