Completed
Push — master ( 19732d...076741 )
by Paweł
11:47
created

Version20180108120259   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 3
dl 0
loc 20
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A up() 0 8 1
A down() 0 8 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SWP\Migrations;
6
7
use Doctrine\DBAL\Migrations\AbstractMigration;
8
use Doctrine\DBAL\Schema\Schema;
9
10
/**
11
 * Auto-generated Migration: Please modify to your needs!
12
 */
13
class Version20180108120259 extends AbstractMigration
0 ignored issues
show
Deprecated Code introduced by
The class Doctrine\DBAL\Migrations\AbstractMigration has been deprecated with message: Please use Doctrine\Migrations\AbstractMigration

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
14
{
15
    public function up(Schema $schema)
16
    {
17
        // this up() migration is auto-generated, please modify it to your needs
18
        $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.');
19
20
        $this->addSql('DROP INDEX uniq_27c04f4c5e237e06');
21
        $this->addSql('CREATE UNIQUE INDEX swp_widget_name_idx ON swp_widget (name, tenant_code)');
22
    }
23
24
    public function down(Schema $schema)
25
    {
26
        // this down() migration is auto-generated, please modify it to your needs
27
        $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.');
28
29
        $this->addSql('DROP INDEX swp_widget_name_idx');
30
        $this->addSql('CREATE UNIQUE INDEX uniq_27c04f4c5e237e06 ON swp_widget (name)');
31
    }
32
}
33