Passed
Push — dbal ( 2f09b3...fa71fb )
by Greg
06:43
created

WebtreesSchema.php$0 ➔ getSQLDeclaration()   A

Complexity

Conditions 3

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

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