1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace App\Migration; |
4
|
|
|
|
5
|
|
|
use Doctrine\DBAL\Schema\Schema; |
|
|
|
|
6
|
|
|
use Doctrine\Migrations\AbstractMigration; |
|
|
|
|
7
|
|
|
use Doctrine\DBAL\Migrations\Version; |
|
|
|
|
8
|
|
|
use Ds\Component\Acl\Migration\Version0_15_0 as Acl; |
|
|
|
|
9
|
|
|
use Ds\Component\Config\Migration\Version0_15_0 as Config; |
|
|
|
|
10
|
|
|
use Ds\Component\Container\Attribute; |
|
|
|
|
11
|
|
|
use Ds\Component\Database\Util\Objects; |
|
|
|
|
12
|
|
|
use Ds\Component\Database\Util\Parameters; |
|
|
|
|
13
|
|
|
use Ds\Component\Metadata\Migration\Version0_15_0 as Metadata; |
|
|
|
|
14
|
|
|
use Ds\Component\Parameter\Migration\Version0_15_0 as Parameter; |
|
|
|
|
15
|
|
|
use Ds\Component\Tenant\Migration\Version0_15_0 as Tenant; |
|
|
|
|
16
|
|
|
use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
|
|
|
|
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Class Version0_15_0 |
20
|
|
|
*/ |
21
|
|
|
final class Version0_15_0 extends AbstractMigration implements ContainerAwareInterface |
22
|
|
|
{ |
23
|
|
|
use Attribute\Container; |
|
|
|
|
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* @cont string |
27
|
|
|
*/ |
28
|
|
|
const DIRECTORY = '/srv/api/config/migrations'; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @var \Ds\Component\Acl\Migration\Version0_15_0 |
32
|
|
|
*/ |
33
|
|
|
private $acl; |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* @var \Ds\Component\Config\Migration\Version0_15_0 |
37
|
|
|
*/ |
38
|
|
|
private $config; |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* @var \Ds\Component\Metadata\Migration\Version0_15_0 |
42
|
|
|
*/ |
43
|
|
|
private $metadata; |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* @var \Ds\Component\Parameter\Migration\Version0_15_0 |
47
|
|
|
*/ |
48
|
|
|
private $parameter; |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @var \Ds\Component\Tenant\Migration\Version0_15_0 |
52
|
|
|
*/ |
53
|
|
|
private $tenant; |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* Constructor |
57
|
|
|
* |
58
|
|
|
* @param \Doctrine\DBAL\Migrations\Version $version |
59
|
|
|
*/ |
60
|
|
|
public function __construct(Version $version) |
61
|
|
|
{ |
62
|
|
|
parent::__construct($version); |
63
|
|
|
$this->acl = new Acl($version); |
64
|
|
|
$this->config = new Config($version); |
65
|
|
|
$this->metadata = new Metadata($version); |
66
|
|
|
$this->parameter = new Parameter($version); |
67
|
|
|
$this->tenant = new Tenant($version); |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* Up migration |
72
|
|
|
* |
73
|
|
|
* @param \Doctrine\DBAL\Schema\Schema $schema |
74
|
|
|
*/ |
75
|
|
|
public function up(Schema $schema) |
76
|
|
|
{ |
77
|
|
|
$parameters = Parameters::parseFile(static::DIRECTORY.'/parameters.yaml'); |
78
|
|
|
$this->acl->up($schema, Objects::parseFile(static::DIRECTORY.'/0_15_0/acl.yaml', $parameters)); |
79
|
|
|
$this->config->setContainer($this->container)->up($schema, Objects::parseFile(static::DIRECTORY.'/0_15_0/config.yaml', $parameters)); |
80
|
|
|
$this->metadata->up($schema, Objects::parseFile(static::DIRECTORY.'/0_15_0/metadata.yaml', $parameters)); |
81
|
|
|
$this->parameter->setContainer($this->container)->up($schema, Objects::parseFile(static::DIRECTORY.'/0_15_0/system/parameter.yaml', $parameters)); |
82
|
|
|
$this->tenant->up($schema, Objects::parseFile(static::DIRECTORY.'/0_15_0/system/tenant.yaml', $parameters)); |
83
|
|
|
|
84
|
|
|
switch ($this->platform->getName()) { |
85
|
|
|
case 'postgresql': |
86
|
|
|
$this->addSql('CREATE SEQUENCE app_data_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
87
|
|
|
$this->addSql('CREATE SEQUENCE app_data_trans_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
88
|
|
|
$this->addSql('CREATE SEQUENCE app_file_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
89
|
|
|
$this->addSql('CREATE SEQUENCE app_file_trans_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
90
|
|
|
$this->addSql('CREATE SEQUENCE app_page_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
91
|
|
|
$this->addSql('CREATE SEQUENCE app_page_trans_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
92
|
|
|
$this->addSql('CREATE SEQUENCE app_text_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
93
|
|
|
$this->addSql('CREATE SEQUENCE app_text_trans_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); |
94
|
|
|
$this->addSql('CREATE TABLE app_data (id INT NOT NULL, uuid UUID NOT NULL, "owner" VARCHAR(255) DEFAULT NULL, owner_uuid UUID DEFAULT NULL, slug VARCHAR(255) NOT NULL, version INT DEFAULT 1 NOT NULL, tenant UUID NOT NULL, deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))'); |
95
|
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_A8DDD6C3D17F50A6 ON app_data (uuid)'); |
96
|
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_A8DDD6C3989D9B624E59C462 ON app_data (slug, tenant)'); |
97
|
|
|
$this->addSql('CREATE TABLE app_data_trans (id INT NOT NULL, translatable_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, data JSON NOT NULL, locale VARCHAR(255) NOT NULL, PRIMARY KEY(id))'); |
98
|
|
|
$this->addSql('CREATE INDEX IDX_6885795E2C2AC5D3 ON app_data_trans (translatable_id)'); |
99
|
|
|
$this->addSql('CREATE UNIQUE INDEX app_data_trans_unique_translation ON app_data_trans (translatable_id, locale)'); |
100
|
|
|
$this->addSql('COMMENT ON COLUMN app_data_trans.data IS \'(DC2Type:json_array)\''); |
101
|
|
|
$this->addSql('CREATE TABLE app_file (id INT NOT NULL, uuid UUID NOT NULL, "owner" VARCHAR(255) DEFAULT NULL, owner_uuid UUID DEFAULT NULL, slug VARCHAR(255) NOT NULL, "type" VARCHAR(255) DEFAULT NULL, version INT DEFAULT 1 NOT NULL, tenant UUID NOT NULL, deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))'); |
102
|
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_89B113B0D17F50A6 ON app_file (uuid)'); |
103
|
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_89B113B0989D9B624E59C462 ON app_file (slug, tenant)'); |
104
|
|
|
$this->addSql('CREATE TABLE app_file_trans (id INT NOT NULL, translatable_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, description TEXT DEFAULT NULL, presentation TEXT DEFAULT NULL, locale VARCHAR(255) NOT NULL, PRIMARY KEY(id))'); |
105
|
|
|
$this->addSql('CREATE INDEX IDX_8CB905F62C2AC5D3 ON app_file_trans (translatable_id)'); |
106
|
|
|
$this->addSql('CREATE UNIQUE INDEX app_file_trans_unique_translation ON app_file_trans (translatable_id, locale)'); |
107
|
|
|
$this->addSql('CREATE TABLE app_page (id INT NOT NULL, uuid UUID NOT NULL, "owner" VARCHAR(255) DEFAULT NULL, owner_uuid UUID DEFAULT NULL, slug VARCHAR(255) NOT NULL, version INT DEFAULT 1 NOT NULL, tenant UUID NOT NULL, deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))'); |
108
|
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_11249380D17F50A6 ON app_page (uuid)'); |
109
|
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_11249380989D9B624E59C462 ON app_page (slug, tenant)'); |
110
|
|
|
$this->addSql('CREATE TABLE app_page_trans (id INT NOT NULL, translatable_id INT DEFAULT NULL, title VARCHAR(255) DEFAULT NULL, description VARCHAR(255) DEFAULT NULL, locale VARCHAR(255) NOT NULL, PRIMARY KEY(id))'); |
111
|
|
|
$this->addSql('CREATE INDEX IDX_40BB4A172C2AC5D3 ON app_page_trans (translatable_id)'); |
112
|
|
|
$this->addSql('CREATE UNIQUE INDEX app_page_trans_unique_translation ON app_page_trans (translatable_id, locale)'); |
113
|
|
|
$this->addSql('CREATE TABLE app_text (id INT NOT NULL, uuid UUID NOT NULL, "owner" VARCHAR(255) DEFAULT NULL, owner_uuid UUID DEFAULT NULL, slug VARCHAR(255) NOT NULL, version INT DEFAULT 1 NOT NULL, tenant UUID NOT NULL, deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))'); |
114
|
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_3EA58267D17F50A6 ON app_text (uuid)'); |
115
|
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_3EA58267989D9B624E59C462 ON app_text (slug, tenant)'); |
116
|
|
|
$this->addSql('CREATE TABLE app_text_trans (id INT NOT NULL, translatable_id INT DEFAULT NULL, title VARCHAR(255) DEFAULT NULL, value TEXT DEFAULT NULL, locale VARCHAR(255) NOT NULL, PRIMARY KEY(id))'); |
117
|
|
|
$this->addSql('CREATE INDEX IDX_708E0F9C2C2AC5D3 ON app_text_trans (translatable_id)'); |
118
|
|
|
$this->addSql('CREATE UNIQUE INDEX app_text_trans_unique_translation ON app_text_trans (translatable_id, locale)'); |
119
|
|
|
$this->addSql('ALTER TABLE app_data_trans ADD CONSTRAINT FK_6885795E2C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES app_data (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE'); |
120
|
|
|
$this->addSql('ALTER TABLE app_file_trans ADD CONSTRAINT FK_8CB905F62C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES app_file (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE'); |
121
|
|
|
$this->addSql('ALTER TABLE app_page_trans ADD CONSTRAINT FK_40BB4A172C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES app_page (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE'); |
122
|
|
|
$this->addSql('ALTER TABLE app_text_trans ADD CONSTRAINT FK_708E0F9C2C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES app_text (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE'); |
123
|
|
|
break; |
124
|
|
|
|
125
|
|
|
default: |
126
|
|
|
$this->abortIf(true,'Migration cannot be executed on "'.$this->platform->getName().'".'); |
127
|
|
|
break; |
128
|
|
|
} |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
/** |
132
|
|
|
* Down migration |
133
|
|
|
* |
134
|
|
|
* @param \Doctrine\DBAL\Schema\Schema $schema |
135
|
|
|
*/ |
136
|
|
|
public function down(Schema $schema) |
137
|
|
|
{ |
138
|
|
|
$this->acl->down($schema); |
139
|
|
|
$this->config->setContainer($this->container)->down($schema); |
140
|
|
|
$this->metadata->down($schema); |
141
|
|
|
$this->parameter->setContainer($this->container)->down($schema); |
142
|
|
|
$this->tenant->down($schema); |
143
|
|
|
|
144
|
|
|
switch ($this->platform->getName()) { |
145
|
|
|
case 'postgresql': |
146
|
|
|
$this->addSql('ALTER TABLE app_data_trans DROP CONSTRAINT FK_6885795E2C2AC5D3'); |
147
|
|
|
$this->addSql('ALTER TABLE app_file_trans DROP CONSTRAINT FK_8CB905F62C2AC5D3'); |
148
|
|
|
$this->addSql('ALTER TABLE app_page_trans DROP CONSTRAINT FK_40BB4A172C2AC5D3'); |
149
|
|
|
$this->addSql('ALTER TABLE app_text_trans DROP CONSTRAINT FK_708E0F9C2C2AC5D3'); |
150
|
|
|
$this->addSql('DROP SEQUENCE app_data_id_seq CASCADE'); |
151
|
|
|
$this->addSql('DROP SEQUENCE app_data_trans_id_seq CASCADE'); |
152
|
|
|
$this->addSql('DROP SEQUENCE app_file_id_seq CASCADE'); |
153
|
|
|
$this->addSql('DROP SEQUENCE app_file_trans_id_seq CASCADE'); |
154
|
|
|
$this->addSql('DROP SEQUENCE app_page_id_seq CASCADE'); |
155
|
|
|
$this->addSql('DROP SEQUENCE app_page_trans_id_seq CASCADE'); |
156
|
|
|
$this->addSql('DROP SEQUENCE app_text_id_seq CASCADE'); |
157
|
|
|
$this->addSql('DROP SEQUENCE app_text_trans_id_seq CASCADE'); |
158
|
|
|
$this->addSql('DROP TABLE app_data'); |
159
|
|
|
$this->addSql('DROP TABLE app_data_trans'); |
160
|
|
|
$this->addSql('DROP TABLE app_file'); |
161
|
|
|
$this->addSql('DROP TABLE app_file_trans'); |
162
|
|
|
$this->addSql('DROP TABLE app_page'); |
163
|
|
|
$this->addSql('DROP TABLE app_page_trans'); |
164
|
|
|
$this->addSql('DROP TABLE app_text'); |
165
|
|
|
$this->addSql('DROP TABLE app_text_trans'); |
166
|
|
|
break; |
167
|
|
|
|
168
|
|
|
default: |
169
|
|
|
$this->abortIf(true,'Migration cannot be executed on "'.$this->platform->getName().'".'); |
170
|
|
|
break; |
171
|
|
|
} |
172
|
|
|
} |
173
|
|
|
} |
174
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths