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

Version20170328192122   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A up() 0 5 1
A down() 0 8 1
1
<?php
2
3
namespace SWP\Migrations;
4
5
use Doctrine\DBAL\Migrations\AbstractMigration;
6
use Doctrine\DBAL\Schema\Schema;
7
8
/**
9
 * Auto-generated Migration: Please modify to your needs!
10
 */
11
class Version20170328192122 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...
12
{
13
    /**
14
     * @param Schema $schema
15
     */
16
    public function up(Schema $schema)
17
    {
18
        $this->addSql('CREATE SEQUENCE swp_settings_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
19
        $this->addSql('CREATE TABLE swp_settings (id INT NOT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL, scope VARCHAR(255) NOT NULL, value TEXT NOT NULL, name VARCHAR(255) NOT NULL, owner INT DEFAULT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))');
20
    }
21
22
    /**
23
     * @param Schema $schema
24
     */
25
    public function down(Schema $schema)
26
    {
27
        // this down() migration is auto-generated, please modify it to your needs
28
        $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.');
29
30
        $this->addSql('DROP SEQUENCE swp_settings_id_seq CASCADE');
31
        $this->addSql('DROP TABLE swp_settings');
32
    }
33
}
34