aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations/Version20160906180558.php
blob: 431b9968f847058d128afc37745f63392bd254fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php

namespace Application\Migrations;

use Doctrine\DBAL\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Added group table.
 */
class Version20160906180558 extends AbstractMigration implements ContainerAwareInterface
{
    /**
     * @var ContainerInterface
     */
    private $container;

    public function setContainer(ContainerInterface $container = null)
    {
        $this->container = $container;
    }

    private function getTable($tableName)
    {
        return $this->container->getParameter('database_table_prefix').$tableName;
    }

    /**
     * @param Schema $schema
     */
    public function up(Schema $schema)
    {
        $groupTable = $schema->createTable($this->getTable('group'));
        $groupTable->addColumn('id', 'integer');
        $groupTable->addColumn('name', 'string');
        $groupTable->addColumn('roles', 'blob');
        $groupTable->setPrimaryKey(['id']);

        $userGroupTable = $schema->createTable($this->getTable('user_group'));
        $userGroupTable->addColumn('user_id', 'integer');
        $userGroupTable->addColumn('group_id', 'integer');
        $userGroupTable->setPrimaryKey(['user_id', 'group_id']);

        $userGroupTable->addForeignKeyConstraint(
            $groupTable,
            array('group_id'),
            array('id'),
            array('onDelete' => 'CASCADE')
        );

        $userGroupTable->addForeignKeyConstraint(
            $this->getTable('user'),
            array('user_id'),
            array('id'),
            array('onDelete' => 'CASCADE')
        );
    }

    /**
     * @param Schema $schema
     */
    public function down(Schema $schema)
    {
        $this->abortIf($this->connection->getDatabasePlatform()->getName() == 'sqlite', 'Migration can only be executed safely on \'mysql\'.');

        $schema->dropTable($this->getTable('group'));
        $schema->dropTable($this->getTable('user_group'));
    }
}