Passed
Push — dbal ( e8762b...2f09b3 )
by Greg
06:41
created

WebtreesSchema.php$0 ➔ migrate()   C

Complexity

Conditions 13

Size

Total Lines 451

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 13
dl 0
loc 451
rs 5.2933
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A WebtreesSchema.php$0 ➔ getSQLDeclaration() 0 12 3
A WebtreesSchema.php$0 ➔ getName() 0 3 1

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2022 webtrees development team
6
 * This program is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
 * GNU General Public License for more details.
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16
 */
17
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees;
21
22
use Doctrine\DBAL\Connection;
23
use Doctrine\DBAL\Platforms\AbstractPlatform;
24
use Doctrine\DBAL\Platforms\SqlitePlatform;
0 ignored issues
show
Bug introduced by
The type Doctrine\DBAL\Platforms\SqlitePlatform was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
use Doctrine\DBAL\Platforms\SQLServerPlatform;
26
use Doctrine\DBAL\Schema\Schema;
27
use Doctrine\DBAL\Schema\SchemaException;
28
use Doctrine\DBAL\Types\PhpDateTimeMappingType;
29
use Doctrine\DBAL\Types\Type;
30
use Doctrine\DBAL\Types\Types;
31
32
use PDOException;
33
34
use Throwable;
35
36
use function str_contains;
37
use function var_dump;
38
39
/**
40
 * Definitions for the webtrees database.
41
 */
42
class WebtreesSchema
43
{
44
    public function foo(): void
45
    {
46
        switch ('webtrees_schema') {
47
            case 1: // webtrees 1.0.0 - 1.0.3
48
            case 2: // webtrees 1.0.4
49
            case 3:
50
            case 4: // webtrees 1.0.5
51
            case 5: // webtrees 1.0.6
52
            case 6:
53
            case 7:
54
            case 8:
55
            case 9: // webtrees 1.1.0 - 1.1.1
56
            case 10: // webtrees 1.1.2
57
            case 11: // webtrees 1.2.0
58
            case 12: // webtrees 1.2.1 - 1.2.3
59
            case 13:
60
            case 14:
61
            case 15: // webtrees 1.2.4 - 1.2.5
62
            case 16: // webtrees 1.2.7
63
            case 17:
64
            case 18: // webtrees 1.3.0
65
            case 19: // webtrees 1.3.1
66
            case 20: // webtrees 1.3.2
67
            case 21:
68
            case 22:
69
            case 23: // webtrees 1.4.0 - 1.4.1
70
            case 24:
71
            case 25: // webtrees 1.4.2 - 1.4.4, 1.5.0
72
            case 26: // webtrees 1.4.5 - 1.4.6
73
            case 27: // webtrees 1.5.1 - 1.6.0
74
            case 28:
75
            case 29: // webtrees 1.6.1 - 1.6.2
76
            case 30:
77
            case 31: // webtrees 1.7.0 - 1.7.1
78
            case 32: // webtrees 1.7.2
79
            case 33:
80
            case 34: // webtrees 1.7.3 - 1.7.4
81
            case 35:
82
            case 36: // webtrees 1.7.5 - 1.7.7
83
            case 37: // webtrees 1.7.8 - 2.0.0
84
            case 38:
85
            case 39:
86
            case 40: // webtrees 2.0.1 - 2.1.7
87
        }
88
    }
89
90
    /**
91
     * @param Connection $connection
92
     * @param string     $prefix
93
     *
94
     * @return void
95
     *
96
     * @throws SchemaException
97
     * @throws \Doctrine\DBAL\Exception
98
     */
99
    public static function migrate(Connection $connection, string $prefix): void
100
    {
101
        $platform = $connection->getDatabasePlatform();
102
103
        // Existing databases may have enum columns.
104
        $platform->registerDoctrineTypeMapping('enum', 'string');
105
106
        // Timestamp
107
        if (!Type::hasType('timestamp')) {
108
            Type::addType(
109
                'timestamp',
110
                new class extends Type implements PhpDateTimeMappingType {
111
                    public function getName(): string
112
                    {
113
                        return 'timestamp';
114
                    }
115
116
                    public function getSQLDeclaration(array $column, AbstractPlatform $platform): string
117
                    {
118
                        if ($platform instanceof SqlitePlatform) {
119
                            return 'DATETIME(' . $column['precision'] . ')';
120
                        }
121
122
                        if ($platform instanceof SQLServerPlatform) {
123
                            return 'DATETIME2(' . $column['precision'] . ')';
124
                        }
125
126
                        // Standard SQL
127
                        return 'TIMESTAMP(' . $column['precision'] . ')';
128
                    }
129
                }
130
            );
131
        }
132
133
        $schema_manager = $connection->createSchemaManager();
134
        $current_schema = $schema_manager->createSchema();
135
136
        $schema = new Schema();
137
138
        $table_gedcom = $schema->createTable($prefix . 'gedcom');
139
        $table_gedcom->addColumn('gedcom_id', Types::INTEGER, ['autoincrement' => true]);
140
        $table_gedcom->addColumn('gedcom_name', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
141
        $table_gedcom->addColumn('sort_order', Types::INTEGER, ['default' => 0]);
142
        $table_gedcom->setPrimaryKey(['gedcom_id']);
143
        $table_gedcom->addUniqueIndex(['gedcom_name']);
144
        $table_gedcom->addIndex(['sort_order']);
145
146
        $table_user = $schema->createTable($prefix . 'user');
147
        $table_user->addColumn('user_id', Types::INTEGER, ['autoincrement' => true]);
148
        $table_user->addColumn('user_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
149
        $table_user->addColumn('real_name', Types::STRING, ['length' => 64, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
150
        $table_user->addColumn('email', Types::STRING, ['length' => 64, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
151
        $table_user->addColumn('password', Types::STRING, ['length' => 128, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
152
        $table_user->setPrimaryKey(['user_id']);
153
        $table_user->addUniqueIndex(['user_name']);
154
        $table_user->addUniqueIndex(['email']);
155
156
        $table_module = $schema->createTable($prefix . 'module');
157
        $table_module->addColumn('module_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
158
        $table_module->addColumn('status', Types::STRING, ['length' => 8, 'platformOptions' => ['collation' => 'ascii_bin']]);
159
        $table_module->addColumn('tab_order', Types::INTEGER, ['notnull' => false]);
160
        $table_module->addColumn('menu_order', Types::INTEGER, ['notnull' => false]);
161
        $table_module->addColumn('sidebar_order', Types::INTEGER, ['notnull' => false]);
162
        $table_module->addColumn('footer_order', Types::INTEGER, ['notnull' => false]);
163
        $table_module->setPrimaryKey(['module_name']);
164
165
        $table_block = $schema->createTable($prefix . 'block');
166
        $table_block->addColumn('block_id', Types::INTEGER, ['autoincrement' => true]);
167
        $table_block->addColumn('gedcom_id', Types::INTEGER, ['notnull' => false]);
168
        $table_block->addColumn('user_id', Types::INTEGER, ['notnull' => false]);
169
        $table_block->addColumn('xref', Types::STRING, ['length' => 20, 'notnull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]);
170
        $table_block->addColumn('location', Types::STRING, ['length' => 4, 'notnull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]);
171
        $table_block->addColumn('block_order', Types::INTEGER);
172
        $table_block->addColumn('module_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
173
        $table_block->setPrimaryKey(['block_id']);
174
        $table_block->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
175
        $table_block->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
176
        $table_block->addForeignKeyConstraint($table_module, ['module_name'], ['module_name'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
177
178
        $table_block_setting = $schema->createTable($prefix . 'block_setting');
179
        $table_block_setting->addColumn('block_id', Types::INTEGER);
180
        $table_block_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]);
181
        $table_block_setting->addColumn('setting_value', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
182
        $table_block_setting->setPrimaryKey(['block_id', 'setting_name']);
183
        $table_block_setting->addForeignKeyConstraint($table_block, ['block_id'], ['block_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
184
185
        $table_change = $schema->createTable($prefix . 'change');
186
        $table_change->addColumn('change_id', Types::INTEGER, ['autoincrement' => true]);
187
        $table_change->addColumn('change_time', Types::DATETIME_MUTABLE, ['default' => 'CURRENT_TIMESTAMP']);
188
        $table_change->addColumn('status', Types::STRING, ['length' => 8, 'default' => 'pending', 'platformOptions' => ['collation' => 'ascii_bin']]);
189
        $table_change->addColumn('gedcom_id', Types::INTEGER);
190
        $table_change->addColumn('xref', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
191
        $table_change->addColumn('old_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
192
        $table_change->addColumn('new_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
193
        $table_change->addColumn('user_id', Types::INTEGER);
194
        $table_change->setPrimaryKey(['change_id']);
195
        $table_change->addIndex(['gedcom_id', 'status', 'xref']);
196
        $table_change->addIndex(['user_id']);
197
        $table_change->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
198
        $table_change->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
199
200
        $table_dates = $schema->createTable($prefix . 'dates');
201
        $table_dates->addColumn('d_day', Types::SMALLINT);
202
        $table_dates->addColumn('d_month', Types::STRING, ['length' => 5, 'fixed' => true, 'platformOptions' => ['collation' => 'ascii_bin']]);
203
        $table_dates->addColumn('d_mon', Types::SMALLINT);
204
        $table_dates->addColumn('d_year', Types::SMALLINT);
205
        $table_dates->addColumn('d_julianday1', Types::INTEGER);
206
        $table_dates->addColumn('d_julianday2', Types::INTEGER);
207
        $table_dates->addColumn('d_fact', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]);
208
        $table_dates->addColumn('d_gid', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
209
        $table_dates->addColumn('d_file', Types::INTEGER);
210
        $table_dates->addColumn('d_type', Types::STRING, ['length' => 13, 'platformOptions' => ['collation' => 'ascii_bin']]);
211
        $table_dates->addIndex(['d_day']);
212
        $table_dates->addIndex(['d_month']);
213
        $table_dates->addIndex(['d_mon']);
214
        $table_dates->addIndex(['d_year']);
215
        $table_dates->addIndex(['d_julianday1']);
216
        $table_dates->addIndex(['d_julianday2']);
217
        $table_dates->addIndex(['d_gid']);
218
        $table_dates->addIndex(['d_file']);
219
        $table_dates->addIndex(['d_type']);
220
        $table_dates->addIndex(['d_fact', 'd_gid']);
221
222
        $table_default_resn = $schema->createTable($prefix . 'default_resn');
223
        $table_default_resn->addColumn('default_resn_id', Types::INTEGER, ['autoincrement' => true]);
224
        $table_default_resn->addColumn('gedcom_id', Types::INTEGER);
225
        $table_default_resn->addColumn('xref', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
226
        $table_default_resn->addColumn('tag_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]);
227
        $table_default_resn->addColumn('resn', Types::STRING, ['length' => 12, 'platformOptions' => ['collation' => 'ascii_bin']]);
228
        $table_default_resn->addColumn('comment', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
229
        $table_default_resn->addColumn('updated', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]);
230
        $table_default_resn->setPrimaryKey(['default_resn_id']);
231
        $table_default_resn->addIndex(['gedcom_id', 'xref', 'tag_type']);
232
        $table_default_resn->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
233
234
        $table_families = $schema->createTable($prefix . 'families');
235
        $table_families->addColumn('f_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
236
        $table_families->addColumn('f_file', Types::INTEGER);
237
        $table_families->addColumn('f_husb', Types::STRING, ['length' => 20, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]);
238
        $table_families->addColumn('f_wife', Types::STRING, ['length' => 20, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]);
239
        $table_families->addColumn('f_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
240
        $table_families->addColumn('f_numchil', Types::INTEGER);
241
        $table_families->setPrimaryKey(['f_id', 'f_file']);
242
        $table_families->addUniqueIndex(['f_file', 'f_id']);
243
        $table_families->addUniqueIndex(['f_husb']);
244
        $table_families->addUniqueIndex(['f_wife']);
245
246
        $table_favorite = $schema->createTable($prefix . 'favorite');
247
        $table_favorite->addColumn('favorite_id', Types::INTEGER, ['autoincrement' => true]);
248
        $table_favorite->addColumn('user_id', Types::INTEGER, ['notNull' => false]);
249
        $table_favorite->addColumn('xref', Types::STRING, ['length' => 20, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]);
250
        $table_favorite->addColumn('favorite_type', Types::STRING, ['length' => 4, 'platformOptions' => ['collation' => 'ascii_bin']]);
251
        $table_favorite->addColumn('url', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
252
        $table_favorite->addColumn('title', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
253
        $table_favorite->addColumn('note', Types::STRING, ['length' => 1000, 'notNull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
254
        $table_favorite->addColumn('gedcom_id', Types::INTEGER);
255
        $table_favorite->setPrimaryKey(['favorite_id']);
256
        $table_favorite->addIndex(['user_id']);
257
        $table_favorite->addIndex(['gedcom_id', 'user_id']);
258
        $table_favorite->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
259
        $table_favorite->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
260
261
        $table_gedcom_chunk = $schema->createTable($prefix . 'gedcom_chunk');
262
        $table_gedcom_chunk->addColumn('gedcom_chunk_id', Types::INTEGER, ['autoincrement' => true]);
263
        $table_gedcom_chunk->addColumn('gedcom_id', Types::INTEGER);
264
        $table_gedcom_chunk->addColumn('chunk_data', Types::BLOB);
265
        $table_gedcom_chunk->addColumn('imported', Types::INTEGER, ['default' => 0]);
266
        $table_gedcom_chunk->setPrimaryKey(['gedcom_chunk_id']);
267
        $table_gedcom_chunk->addIndex(['gedcom_id', 'imported']);
268
        $table_gedcom_chunk->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
269
270
        $table_gedcom_setting = $schema->createTable($prefix . 'gedcom_setting');
271
        $table_gedcom_setting->addColumn('gedcom_id', Types::INTEGER);
272
        $table_gedcom_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]);
273
        $table_gedcom_setting->addColumn('setting_value', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
274
        $table_gedcom_setting->setPrimaryKey(['gedcom_id', 'setting_name']);
275
        $table_gedcom_setting->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
276
277
        $table_hit_counter = $schema->createTable($prefix . 'hit_counter');
278
        $table_hit_counter->addColumn('gedcom_id', Types::INTEGER);
279
        $table_hit_counter->addColumn('page_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]);
280
        $table_hit_counter->addColumn('page_parameter', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
281
        $table_hit_counter->addColumn('page_count', Types::INTEGER);
282
        $table_hit_counter->setPrimaryKey(['gedcom_id', 'page_name', 'page_parameter']);
283
        $table_hit_counter->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
284
285
        $table_individuals = $schema->createTable($prefix . 'individuals');
286
        $table_individuals->addColumn('i_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
287
        $table_individuals->addColumn('i_file', Types::INTEGER);
288
        $table_individuals->addColumn('i_rin', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
289
        $table_individuals->addColumn('i_sex', Types::STRING, ['length' => 1, 'platformOptions' => ['collation' => 'ascii_bin']]);
290
        $table_individuals->addColumn('i_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
291
        $table_individuals->setPrimaryKey(['i_id', 'i_file']);
292
        $table_individuals->addUniqueIndex(['i_file', 'i_id']);
293
294
        $table_link = $schema->createTable($prefix . 'link');
295
        $table_link->addColumn('l_file', Types::INTEGER);
296
        $table_link->addColumn('l_from', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
297
        $table_link->addColumn('l_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]);
298
        $table_link->addColumn('l_to', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
299
        $table_link->setPrimaryKey(['l_from', 'l_file', 'l_type', 'l_to']);
300
        $table_link->addUniqueIndex(['l_to', 'l_file', 'l_type', 'l_from']);
301
302
        $table_log = $schema->createTable($prefix . 'log');
303
        $table_log->addColumn('log_id', Types::INTEGER, ['autoincrement' => true]);
304
        $table_log->addColumn('log_time', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]);
305
        $table_log->addColumn('log_type', Types::STRING, ['length' => 6, 'platformOptions' => ['collation' => 'ascii_bin']]);
306
        $table_log->addColumn('log_message', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
307
        $table_log->addColumn('ip_address', Types::STRING, ['length' => 45]);
308
        $table_log->addColumn('user_id', Types::INTEGER, ['notNull' => false]);
309
        $table_log->addColumn('gedcom_id', Types::INTEGER, ['notNull' => false]);
310
        $table_log->setPrimaryKey(['log_id']);
311
        $table_log->addIndex(['log_time']);
312
        $table_log->addIndex(['log_type']);
313
        $table_log->addIndex(['ip_address']);
314
        $table_log->addIndex(['user_id']);
315
        $table_log->addIndex(['gedcom_id']);
316
        $table_log->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
317
        $table_log->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
318
319
        $table_media = $schema->createTable($prefix . 'media');
320
        $table_media->addColumn('m_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
321
        $table_media->addColumn('m_file', Types::INTEGER);
322
        $table_media->addColumn('m_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
323
        $table_media->setPrimaryKey(['m_file', 'm_id']);
324
        $table_media->addUniqueIndex(['m_id', 'm_file']);
325
326
        $table_media_file = $schema->createTable($prefix . 'media_file');
327
        $table_media_file->addColumn('id', Types::INTEGER, ['autoincrement' => true]);
328
        $table_media_file->addColumn('m_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
329
        $table_media_file->addColumn('m_file', Types::INTEGER);
330
        $table_media_file->addColumn('multimedia_file_refn', Types::STRING, ['length' => 246, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
331
        $table_media_file->addColumn('multimedia_format', Types::STRING, ['length' => 4, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
332
        $table_media_file->addColumn('source_media_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
333
        $table_media_file->addColumn('descriptive_title', Types::STRING, ['length' => 248, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
334
        $table_media_file->setPrimaryKey(['id']);
335
        $table_media_file->addIndex(['m_id', 'm_file']);
336
        $table_media_file->addIndex(['m_file', 'm_id']);
337
        $table_media_file->addIndex(['m_file', 'multimedia_file_refn']);
338
        $table_media_file->addIndex(['m_file', 'multimedia_format']);
339
        $table_media_file->addIndex(['m_file', 'source_media_type']);
340
        $table_media_file->addIndex(['m_file', 'descriptive_title']);
341
342
        $table_message = $schema->createTable($prefix . 'message');
343
        $table_message->addColumn('message_id', Types::INTEGER, ['autoincrement' => true]);
344
        $table_message->addColumn('sender', Types::STRING, ['length' => 64, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
345
        $table_message->addColumn('ip_address', Types::STRING, ['length' => 45, 'platformOptions' => ['collation' => 'ascii_bin']]);
346
        $table_message->addColumn('user_id', Types::INTEGER);
347
        $table_message->addColumn('subject', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
348
        $table_message->addColumn('body', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
349
        $table_message->addColumn('created', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]);
350
        $table_message->addIndex(['user_id']);
351
        $table_message->setPrimaryKey(['message_id']);
352
        $table_message->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
353
354
        $table_module_privacy = $schema->createTable($prefix . 'module_privacy');
355
        $table_module_privacy->addColumn('id', Types::INTEGER, ['autoincrement' => true]);
356
        $table_module_privacy->addColumn('module_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_bin']]);
357
        $table_module_privacy->addColumn('gedcom_id', Types::INTEGER);
358
        $table_module_privacy->addColumn('interface', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'ascii_bin']]);
359
        $table_module_privacy->addColumn('access_level', Types::SMALLINT);
360
        $table_module_privacy->addUniqueIndex(['gedcom_id', 'module_name', 'interface']);
361
        $table_module_privacy->addUniqueIndex(['module_name', 'gedcom_id', 'interface']);
362
        $table_module_privacy->setPrimaryKey(['id']);
363
        $table_module_privacy->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
364
        $table_module_privacy->addForeignKeyConstraint($table_module, ['module_name'], ['module_name'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
365
366
        $table_module_setting = $schema->createTable($prefix . 'module_setting');
367
        $table_module_setting->addColumn('module_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
368
        $table_module_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
369
        $table_module_setting->addColumn('setting_value', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
370
        $table_module_setting->setPrimaryKey(['module_name', 'setting_name']);
371
        $table_module_setting->addForeignKeyConstraint($table_module, ['module_name'], ['module_name'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
372
373
        $table_name = $schema->createTable($prefix . 'name');
374
        $table_name->addColumn('n_file', Types::INTEGER);
375
        $table_name->addColumn('n_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
376
        $table_name->addColumn('n_num', Types::INTEGER);
377
        $table_name->addColumn('n_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]);
378
        $table_name->addColumn('n_sort', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
379
        $table_name->addColumn('n_full', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
380
        $table_name->addColumn('n_surname', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
381
        $table_name->addColumn('n_surn', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
382
        $table_name->addColumn('n_givn', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
383
        $table_name->addColumn('n_soundex_givn_std', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'ascii_bin']]);
384
        $table_name->addColumn('n_soundex_surn_std', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'ascii_bin']]);
385
        $table_name->addColumn('n_soundex_givn_dm', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'ascii_bin']]);
386
        $table_name->addColumn('n_soundex_surn_dm', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'ascii_bin']]);
387
        $table_name->setPrimaryKey(['n_id', 'n_file', 'n_num']);
388
        $table_name->addIndex(['n_full', 'n_id', 'n_file']);
389
        $table_name->addIndex(['n_surn', 'n_file', 'n_type', 'n_id']);
390
        $table_name->addIndex(['n_givn', 'n_file', 'n_type', 'n_id']);
391
392
        $table_news = $schema->createTable($prefix . 'news');
393
        $table_news->addColumn('news_id', Types::INTEGER, ['autoincrement' => true]);
394
        $table_news->addColumn('user_id', Types::INTEGER, ['notNull' => false]);
395
        $table_news->addColumn('gedcom_id', Types::INTEGER, ['notNull' => false]);
396
        $table_news->addColumn('subject', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
397
        $table_news->addColumn('body', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
398
        $table_news->addColumn('updated', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]);
399
        $table_news->setPrimaryKey(['news_id']);
400
        $table_news->addIndex(['user_id', 'updated']);
401
        $table_news->addIndex(['gedcom_id', 'updated']);
402
        $table_news->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
403
        $table_news->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
404
405
        $table_other = $schema->createTable($prefix . 'other');
406
        $table_other->addColumn('o_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
407
        $table_other->addColumn('o_file', Types::INTEGER);
408
        $table_other->addColumn('o_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]);
409
        $table_other->addColumn('o_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
410
        $table_other->setPrimaryKey(['o_id', 'o_file']);
411
        $table_other->addUniqueIndex(['o_file', 'o_id']);
412
413
        $table_places = $schema->createTable($prefix . 'places');
414
        $table_places->addColumn('p_id', Types::INTEGER, ['autoincrement' => true]);
415
        $table_places->addColumn('p_place', Types::STRING, ['length' => 150, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
416
        $table_places->addColumn('p_parent_id', Types::INTEGER, ['notNull' => false]);
417
        $table_places->addColumn('p_file', Types::INTEGER);
418
        $table_places->addColumn('p_std_soundex', Types::TEXT, ['platformOptions' => ['collation' => 'ascii_bin']]);
419
        $table_places->addColumn('p_dm_soundex', Types::TEXT, ['platformOptions' => ['collation' => 'ascii_bin']]);
420
        $table_places->setPrimaryKey(['p_id']);
421
        $table_places->addUniqueIndex(['p_parent_id', 'p_file', 'p_place']);
422
        $table_places->addIndex(['p_file', 'p_place']);
423
424
        $table_placelinks = $schema->createTable($prefix . 'placelinks');
425
        $table_placelinks->addColumn('pl_p_id', Types::INTEGER);
426
        $table_placelinks->addColumn('pl_gid', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
427
        $table_placelinks->addColumn('pl_file', Types::INTEGER);
428
        $table_placelinks->setPrimaryKey(['pl_p_id', 'pl_gid', 'pl_file']);
429
        $table_placelinks->addIndex(['pl_p_id']);
430
        $table_placelinks->addIndex(['pl_gid']);
431
        $table_placelinks->addIndex(['pl_file']);
432
433
        $table_place_location = $schema->createTable($prefix . 'place_location');
434
        $table_place_location->addColumn('id', Types::INTEGER, ['autoincrement' => true]);
435
        $table_place_location->addColumn('parent_id', Types::INTEGER, ['notNull' => false]);
436
        $table_place_location->addColumn('place', Types::STRING, ['length' => 120, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
437
        $table_place_location->addColumn('latitude', Types::FLOAT);
438
        $table_place_location->addColumn('longitude', Types::FLOAT);
439
        $table_place_location->setPrimaryKey(['id']);
440
        $table_place_location->addUniqueIndex(['parent_id', 'place']);
441
        $table_place_location->addUniqueIndex(['place', 'parent_id']);
442
        $table_place_location->addIndex(['latitude']);
443
        $table_place_location->addIndex(['longitude']);
444
        $table_place_location->addForeignKeyConstraint($table_place_location, ['parent_id'], ['id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
445
446
        $table_sources = $schema->createTable($prefix . 'session');
447
        $table_sources->addColumn('session_id', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]);
448
        $table_sources->addColumn('session_time', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]);
449
        $table_sources->addColumn('user_id', Types::INTEGER);
450
        $table_sources->addColumn('ip_address', Types::STRING, ['length' => 45, 'platformOptions' => ['collation' => 'ascii_bin']]);
451
        $table_sources->addColumn('session_data', Types::BLOB);
452
        $table_sources->setPrimaryKey(['session_id']);
453
        $table_sources->addIndex(['session_time']);
454
        $table_sources->addIndex(['user_id', 'ip_address']);
455
456
        $table_site_setting = $schema->createTable($prefix . 'site_setting');
457
        $table_site_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]);
458
        $table_site_setting->addColumn('setting_value', Types::STRING, ['length' => 2000, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
459
        $table_site_setting->setPrimaryKey(['setting_name']);
460
461
        $table_sources = $schema->createTable($prefix . 'sources');
462
        $table_sources->addColumn('s_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
463
        $table_sources->addColumn('s_file', Types::INTEGER);
464
        $table_sources->addColumn('s_name', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
465
        $table_sources->addColumn('s_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
466
        $table_sources->setPrimaryKey(['s_id', 's_file']);
467
        $table_sources->addUniqueIndex(['s_file', 's_id']);
468
        $table_sources->addIndex(['s_name']);
469
470
        $table_user_gedcom_setting = $schema->createTable($prefix . 'user_gedcom_setting');
471
        $table_user_gedcom_setting->addColumn('user_id', Types::INTEGER);
472
        $table_user_gedcom_setting->addColumn('gedcom_id', Types::INTEGER);
473
        $table_user_gedcom_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
474
        $table_user_gedcom_setting->addColumn('setting_value', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
475
        $table_user_gedcom_setting->setPrimaryKey(['user_id', 'gedcom_id', 'setting_name']);
476
        $table_user_gedcom_setting->addIndex(['gedcom_id']);
477
        $table_user_gedcom_setting->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
478
        $table_user_gedcom_setting->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
479
480
        $table_user_setting = $schema->createTable($prefix . 'user_setting');
481
        $table_user_setting->addColumn('user_id', Types::INTEGER);
482
        $table_user_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
483
        $table_user_setting->addColumn('setting_value', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
484
        $table_user_setting->setPrimaryKey(['user_id', 'setting_name']);
485
        $table_user_setting->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
486
487
        /*
488
        $site = $schema->createTable($prefix . 'site');
489
        $site->addColumn('uuid', Types::STRING, ['length' => 36, 'platformOptions' => ['collation' => 'ascii_bin']]);
490
        $site->addColumn('db_schema', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]);
491
        $site->addColumn('created_at', Types::TIME_MUTABLE);
492
        $site->addColumn('updated_at', Types::TIME_MUTABLE);
493
        $site->setPrimaryKey(['uuid']);
494
495
        $job = $schema->createTable($prefix . 'job');
496
        $job->addColumn('uuid', Types::STRING, ['length' => 36, 'platformOptions' => ['collation' => 'ascii_bin']]);
497
        $job->addColumn('failures', Types::INTEGER, ['default' => 0]);
498
        $job->addColumn('job', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'ascii_bin']]);
499
        $job->addColumn('parameters', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
500
        $job->addColumn('error', Types::TEXT, ['notnull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]);
501
        $job->addColumn('created_at', Types::TIME_MUTABLE);
502
        $job->addColumn('updated_at', Types::TIME_MUTABLE);
503
        $job->setPrimaryKey(['uuid']);
504
505
        $job_dependency = $schema->createTable($prefix . 'job_dependency');
506
        $job_dependency->addColumn('uuid1', Types::STRING, ['length' => 36, 'platformOptions' => ['collation' => 'ascii_bin']]);
507
        $job_dependency->addColumn('uuid2', Types::STRING, ['length' => 36, 'platformOptions' => ['collation' => 'ascii_bin']]);
508
        $job_dependency->addUniqueIndex(['uuid1', 'uuid2']);
509
        $job_dependency->addUniqueIndex(['uuid2', 'uuid1']);
510
        $job_dependency->addForeignKeyConstraint($job, ['uuid1'], ['uuid'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
511
        $job_dependency->addForeignKeyConstraint($job, ['uuid2'], ['uuid'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']);
512
        */
513
514
        $comparator = $schema_manager->createComparator();
515
        $difference = $comparator->compareSchemas($current_schema, $schema);
516
        $queries    = $difference->toSql($platform);
0 ignored issues
show
Unused Code introduced by
The assignment to $queries is dead and can be removed.
Loading history...
517
        $queries    = $difference->toSaveSql($platform);
518
519
        foreach ($queries as $query) {
520
            if (str_contains($query, 'DROP FOREIGN KEY')) {
521
                echo '<p>', $query, '</p>';
522
                try {
523
                    $connection->executeStatement($query);
524
                } catch (Throwable $ex) {
525
                    echo '<p>', $ex->getMessage(), '</p>';
526
                }
527
            }
528
        }
529
        foreach ($queries as $query) {
530
            if (!str_contains($query, 'FOREIGN KEY')) {
531
                echo '<p>', $query, '</p>';
532
                try {
533
                    $connection->executeStatement($query);
534
                } catch (Throwable $ex) {
535
                    echo '<p>', $ex->getMessage(), '</p>';
536
                }
537
            }
538
        }
539
        foreach ($queries as $query) {
540
            if (str_contains($query, 'ADD CONSTRAINT FK_')) {
541
                echo '<p>', $query, '</p>';
542
                try {
543
                    $connection->executeStatement($query);
544
                } catch (Throwable $ex) {
545
                    echo '<p>', $ex->getMessage(), '</p>';
546
                }
547
            }
548
        }
549
        exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
550
    }
551
}
552