| Total Lines | 442 |
| Code Lines | 342 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
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:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 100 | public static function migrate(Connection $connection, string $prefix): void |
||
| 101 | { |
||
| 102 | $platform = $connection->getDatabasePlatform(); |
||
| 103 | |||
| 104 | // Existing databases may have enum columns. |
||
| 105 | $platform->registerDoctrineTypeMapping('enum', 'string'); |
||
| 106 | |||
| 107 | // Timestamp |
||
| 108 | if (!Type::hasType('timestamp')) { |
||
| 109 | Type::addType( |
||
| 110 | 'timestamp', |
||
| 111 | new class extends Type implements PhpDateTimeMappingType { |
||
| 112 | public function getName(): string |
||
| 113 | { |
||
| 114 | return 'timestamp'; |
||
| 115 | } |
||
| 116 | |||
| 117 | public function getSQLDeclaration(array $column, AbstractPlatform $platform): string |
||
| 118 | { |
||
| 119 | if ($platform instanceof SqlitePlatform) { |
||
| 120 | return 'DATETIME(' . $column['precision'] . ')'; |
||
| 121 | } |
||
| 122 | |||
| 123 | if ($platform instanceof SQLServerPlatform) { |
||
| 124 | return 'DATETIME2(' . $column['precision'] . ')'; |
||
| 125 | } |
||
| 126 | |||
| 127 | // Standard SQL |
||
| 128 | return 'TIMESTAMP(' . $column['precision'] . ')'; |
||
| 129 | } |
||
| 130 | } |
||
| 131 | ); |
||
| 132 | } |
||
| 133 | |||
| 134 | $schema_manager = $connection->createSchemaManager(); |
||
| 135 | $current_schema = $schema_manager->createSchema(); |
||
| 136 | |||
| 137 | $schema = new Schema(); |
||
| 138 | |||
| 139 | $table_gedcom = $schema->createTable($prefix . 'gedcom'); |
||
| 140 | $table_gedcom->addColumn('gedcom_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 141 | $table_gedcom->addColumn('gedcom_name', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 142 | $table_gedcom->addColumn('sort_order', Types::INTEGER, ['default' => 0]); |
||
| 143 | $table_gedcom->setPrimaryKey(['gedcom_id']); |
||
| 144 | $table_gedcom->addUniqueIndex(['gedcom_name']); |
||
| 145 | $table_gedcom->addIndex(['sort_order']); |
||
| 146 | |||
| 147 | $table_user = $schema->createTable($prefix . 'user'); |
||
| 148 | $table_user->addColumn('user_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 149 | $table_user->addColumn('user_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 150 | $table_user->addColumn('real_name', Types::STRING, ['length' => 64, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 151 | $table_user->addColumn('email', Types::STRING, ['length' => 64, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 152 | $table_user->addColumn('password', Types::STRING, ['length' => 128, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 153 | $table_user->setPrimaryKey(['user_id']); |
||
| 154 | $table_user->addUniqueIndex(['user_name']); |
||
| 155 | $table_user->addUniqueIndex(['email']); |
||
| 156 | |||
| 157 | $table_module = $schema->createTable($prefix . 'module'); |
||
| 158 | $table_module->addColumn('module_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_bin']]); |
||
| 159 | $table_module->addColumn('status', Types::STRING, ['length' => 8, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 160 | $table_module->addColumn('tab_order', Types::INTEGER, ['notnull' => false]); |
||
| 161 | $table_module->addColumn('menu_order', Types::INTEGER, ['notnull' => false]); |
||
| 162 | $table_module->addColumn('sidebar_order', Types::INTEGER, ['notnull' => false]); |
||
| 163 | $table_module->addColumn('footer_order', Types::INTEGER, ['notnull' => false]); |
||
| 164 | $table_module->setPrimaryKey(['module_name']); |
||
| 165 | |||
| 166 | $table_block = $schema->createTable($prefix . 'block'); |
||
| 167 | $table_block->addColumn('block_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 168 | $table_block->addColumn('gedcom_id', Types::INTEGER, ['notnull' => false]); |
||
| 169 | $table_block->addColumn('user_id', Types::INTEGER, ['notnull' => false]); |
||
| 170 | $table_block->addColumn('xref', Types::STRING, ['length' => 20, 'notnull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 171 | $table_block->addColumn('location', Types::STRING, ['length' => 4, 'notnull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 172 | $table_block->addColumn('block_order', Types::INTEGER); |
||
| 173 | $table_block->addColumn('module_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_bin']]); |
||
| 174 | $table_block->setPrimaryKey(['block_id']); |
||
| 175 | $table_block->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 176 | $table_block->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 177 | $table_block->addForeignKeyConstraint($table_module, ['module_name'], ['module_name'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 178 | |||
| 179 | $table_block_setting = $schema->createTable($prefix . 'block_setting'); |
||
| 180 | $table_block_setting->addColumn('block_id', Types::INTEGER); |
||
| 181 | $table_block_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 182 | $table_block_setting->addColumn('setting_value', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 183 | $table_block_setting->setPrimaryKey(['block_id', 'setting_name']); |
||
| 184 | $table_block_setting->addForeignKeyConstraint($table_block, ['block_id'], ['block_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 185 | |||
| 186 | $table_change = $schema->createTable($prefix . 'change'); |
||
| 187 | $table_change->addColumn('change_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 188 | $table_change->addColumn('change_time', Types::DATETIME_MUTABLE, ['default' => 'CURRENT_TIMESTAMP']); |
||
| 189 | $table_change->addColumn('status', Types::STRING, ['length' => 8, 'default' => 'pending', 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 190 | $table_change->addColumn('gedcom_id', Types::INTEGER); |
||
| 191 | $table_change->addColumn('xref', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 192 | $table_change->addColumn('old_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 193 | $table_change->addColumn('new_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 194 | $table_change->addColumn('user_id', Types::INTEGER); |
||
| 195 | $table_change->setPrimaryKey(['change_id']); |
||
| 196 | $table_change->addIndex(['gedcom_id', 'status', 'xref']); |
||
| 197 | $table_change->addIndex(['user_id']); |
||
| 198 | $table_change->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 199 | $table_change->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 200 | |||
| 201 | $table_dates = $schema->createTable($prefix . 'dates'); |
||
| 202 | $table_dates->addColumn('d_day', Types::SMALLINT); |
||
| 203 | $table_dates->addColumn('d_month', Types::STRING, ['length' => 5, 'fixed' => true, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 204 | $table_dates->addColumn('d_mon', Types::SMALLINT); |
||
| 205 | $table_dates->addColumn('d_year', Types::SMALLINT); |
||
| 206 | $table_dates->addColumn('d_julianday1', Types::INTEGER); |
||
| 207 | $table_dates->addColumn('d_julianday2', Types::INTEGER); |
||
| 208 | $table_dates->addColumn('d_fact', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 209 | $table_dates->addColumn('d_gid', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 210 | $table_dates->addColumn('d_file', Types::INTEGER); |
||
| 211 | $table_dates->addColumn('d_type', Types::STRING, ['length' => 13, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 212 | $table_dates->addIndex(['d_day']); |
||
| 213 | $table_dates->addIndex(['d_month']); |
||
| 214 | $table_dates->addIndex(['d_mon']); |
||
| 215 | $table_dates->addIndex(['d_year']); |
||
| 216 | $table_dates->addIndex(['d_julianday1']); |
||
| 217 | $table_dates->addIndex(['d_julianday2']); |
||
| 218 | $table_dates->addIndex(['d_gid']); |
||
| 219 | $table_dates->addIndex(['d_file']); |
||
| 220 | $table_dates->addIndex(['d_type']); |
||
| 221 | $table_dates->addIndex(['d_fact', 'd_gid']); |
||
| 222 | |||
| 223 | $table_default_resn = $schema->createTable($prefix . 'default_resn'); |
||
| 224 | $table_default_resn->addColumn('default_resn_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 225 | $table_default_resn->addColumn('gedcom_id', Types::INTEGER); |
||
| 226 | $table_default_resn->addColumn('xref', Types::STRING, ['length' => 20, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 227 | $table_default_resn->addColumn('tag_type', Types::STRING, ['length' => 15, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 228 | $table_default_resn->addColumn('resn', Types::STRING, ['length' => 12, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 229 | $table_default_resn->addColumn('comment', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 230 | $table_default_resn->addColumn('updated', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]); |
||
| 231 | $table_default_resn->setPrimaryKey(['default_resn_id']); |
||
| 232 | $table_default_resn->addIndex(['gedcom_id', 'xref', 'tag_type']); |
||
| 233 | $table_default_resn->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 234 | |||
| 235 | $table_families = $schema->createTable($prefix . 'families'); |
||
| 236 | $table_families->addColumn('f_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 237 | $table_families->addColumn('f_file', Types::INTEGER); |
||
| 238 | $table_families->addColumn('f_husb', Types::STRING, ['length' => 20, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 239 | $table_families->addColumn('f_wife', Types::STRING, ['length' => 20, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 240 | $table_families->addColumn('f_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 241 | $table_families->addColumn('f_numchil', Types::INTEGER); |
||
| 242 | $table_families->setPrimaryKey(['f_id', 'f_file']); |
||
| 243 | $table_families->addUniqueIndex(['f_file', 'f_id']); |
||
| 244 | $table_families->addIndex(['f_husb']); |
||
| 245 | $table_families->addIndex(['f_wife']); |
||
| 246 | |||
| 247 | $table_favorite = $schema->createTable($prefix . 'favorite'); |
||
| 248 | $table_favorite->addColumn('favorite_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 249 | $table_favorite->addColumn('user_id', Types::INTEGER, ['notNull' => false]); |
||
| 250 | $table_favorite->addColumn('xref', Types::STRING, ['length' => 20, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 251 | $table_favorite->addColumn('favorite_type', Types::STRING, ['length' => 4, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 252 | $table_favorite->addColumn('url', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 253 | $table_favorite->addColumn('title', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 254 | $table_favorite->addColumn('note', Types::STRING, ['length' => 1000, 'notNull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 255 | $table_favorite->addColumn('gedcom_id', Types::INTEGER); |
||
| 256 | $table_favorite->setPrimaryKey(['favorite_id']); |
||
| 257 | $table_favorite->addIndex(['user_id']); |
||
| 258 | $table_favorite->addIndex(['gedcom_id', 'user_id']); |
||
| 259 | $table_favorite->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 260 | $table_favorite->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 261 | |||
| 262 | $table_gedcom_chunk = $schema->createTable($prefix . 'gedcom_chunk'); |
||
| 263 | $table_gedcom_chunk->addColumn('gedcom_chunk_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 264 | $table_gedcom_chunk->addColumn('gedcom_id', Types::INTEGER); |
||
| 265 | $table_gedcom_chunk->addColumn('chunk_data', Types::BLOB); |
||
| 266 | $table_gedcom_chunk->addColumn('imported', Types::INTEGER, ['default' => 0]); |
||
| 267 | $table_gedcom_chunk->setPrimaryKey(['gedcom_chunk_id']); |
||
| 268 | $table_gedcom_chunk->addIndex(['gedcom_id', 'imported']); |
||
| 269 | $table_gedcom_chunk->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 270 | |||
| 271 | $table_gedcom_setting = $schema->createTable($prefix . 'gedcom_setting'); |
||
| 272 | $table_gedcom_setting->addColumn('gedcom_id', Types::INTEGER); |
||
| 273 | $table_gedcom_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 274 | $table_gedcom_setting->addColumn('setting_value', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 275 | $table_gedcom_setting->setPrimaryKey(['gedcom_id', 'setting_name']); |
||
| 276 | $table_gedcom_setting->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 277 | |||
| 278 | $table_hit_counter = $schema->createTable($prefix . 'hit_counter'); |
||
| 279 | $table_hit_counter->addColumn('gedcom_id', Types::INTEGER); |
||
| 280 | $table_hit_counter->addColumn('page_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 281 | $table_hit_counter->addColumn('page_parameter', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 282 | $table_hit_counter->addColumn('page_count', Types::INTEGER); |
||
| 283 | $table_hit_counter->setPrimaryKey(['gedcom_id', 'page_name', 'page_parameter']); |
||
| 284 | $table_hit_counter->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 285 | |||
| 286 | $table_individuals = $schema->createTable($prefix . 'individuals'); |
||
| 287 | $table_individuals->addColumn('i_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 288 | $table_individuals->addColumn('i_file', Types::INTEGER); |
||
| 289 | $table_individuals->addColumn('i_rin', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 290 | $table_individuals->addColumn('i_sex', Types::STRING, ['length' => 1, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 291 | $table_individuals->addColumn('i_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 292 | $table_individuals->setPrimaryKey(['i_id', 'i_file']); |
||
| 293 | $table_individuals->addUniqueIndex(['i_file', 'i_id']); |
||
| 294 | |||
| 295 | $table_link = $schema->createTable($prefix . 'link'); |
||
| 296 | $table_link->addColumn('l_file', Types::INTEGER); |
||
| 297 | $table_link->addColumn('l_from', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 298 | $table_link->addColumn('l_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 299 | $table_link->addColumn('l_to', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 300 | $table_link->setPrimaryKey(['l_from', 'l_file', 'l_type', 'l_to']); |
||
| 301 | $table_link->addUniqueIndex(['l_to', 'l_file', 'l_type', 'l_from']); |
||
| 302 | |||
| 303 | $table_log = $schema->createTable($prefix . 'log'); |
||
| 304 | $table_log->addColumn('log_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 305 | $table_log->addColumn('log_time', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]); |
||
| 306 | $table_log->addColumn('log_type', Types::STRING, ['length' => 6, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 307 | $table_log->addColumn('log_message', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 308 | $table_log->addColumn('ip_address', Types::STRING, ['length' => 45]); |
||
| 309 | $table_log->addColumn('user_id', Types::INTEGER, ['notNull' => false]); |
||
| 310 | $table_log->addColumn('gedcom_id', Types::INTEGER, ['notNull' => false]); |
||
| 311 | $table_log->setPrimaryKey(['log_id']); |
||
| 312 | $table_log->addIndex(['log_time']); |
||
| 313 | $table_log->addIndex(['log_type']); |
||
| 314 | $table_log->addIndex(['ip_address']); |
||
| 315 | $table_log->addIndex(['user_id']); |
||
| 316 | $table_log->addIndex(['gedcom_id']); |
||
| 317 | $table_log->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 318 | $table_log->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 319 | |||
| 320 | $table_media = $schema->createTable($prefix . 'media'); |
||
| 321 | $table_media->addColumn('m_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 322 | $table_media->addColumn('m_file', Types::INTEGER); |
||
| 323 | $table_media->addColumn('m_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 324 | $table_media->setPrimaryKey(['m_file', 'm_id']); |
||
| 325 | $table_media->addUniqueIndex(['m_id', 'm_file']); |
||
| 326 | |||
| 327 | $table_media_file = $schema->createTable($prefix . 'media_file'); |
||
| 328 | $table_media_file->addColumn('id', Types::INTEGER, ['autoincrement' => true]); |
||
| 329 | $table_media_file->addColumn('m_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 330 | $table_media_file->addColumn('m_file', Types::INTEGER); |
||
| 331 | $table_media_file->addColumn('multimedia_file_refn', Types::STRING, ['length' => 246, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 332 | $table_media_file->addColumn('multimedia_format', Types::STRING, ['length' => 4, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 333 | $table_media_file->addColumn('source_media_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 334 | $table_media_file->addColumn('descriptive_title', Types::STRING, ['length' => 248, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 335 | $table_media_file->setPrimaryKey(['id']); |
||
| 336 | $table_media_file->addIndex(['m_id', 'm_file']); |
||
| 337 | $table_media_file->addIndex(['m_file', 'm_id']); |
||
| 338 | $table_media_file->addIndex(['m_file', 'multimedia_file_refn']); |
||
| 339 | $table_media_file->addIndex(['m_file', 'multimedia_format']); |
||
| 340 | $table_media_file->addIndex(['m_file', 'source_media_type']); |
||
| 341 | $table_media_file->addIndex(['m_file', 'descriptive_title']); |
||
| 342 | |||
| 343 | $table_message = $schema->createTable($prefix . 'message'); |
||
| 344 | $table_message->addColumn('message_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 345 | $table_message->addColumn('sender', Types::STRING, ['length' => 64, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 346 | $table_message->addColumn('ip_address', Types::STRING, ['length' => 45, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 347 | $table_message->addColumn('user_id', Types::INTEGER); |
||
| 348 | $table_message->addColumn('subject', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 349 | $table_message->addColumn('body', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 350 | $table_message->addColumn('created', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]); |
||
| 351 | $table_message->addIndex(['user_id']); |
||
| 352 | $table_message->setPrimaryKey(['message_id']); |
||
| 353 | $table_message->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 354 | |||
| 355 | $table_module_privacy = $schema->createTable($prefix . 'module_privacy'); |
||
| 356 | $table_module_privacy->addColumn('id', Types::INTEGER, ['autoincrement' => true]); |
||
| 357 | $table_module_privacy->addColumn('module_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_bin']]); |
||
| 358 | $table_module_privacy->addColumn('gedcom_id', Types::INTEGER); |
||
| 359 | $table_module_privacy->addColumn('interface', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 360 | $table_module_privacy->addColumn('access_level', Types::SMALLINT); |
||
| 361 | $table_module_privacy->addUniqueIndex(['gedcom_id', 'module_name', 'interface']); |
||
| 362 | $table_module_privacy->addUniqueIndex(['module_name', 'gedcom_id', 'interface']); |
||
| 363 | $table_module_privacy->setPrimaryKey(['id']); |
||
| 364 | $table_module_privacy->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 365 | $table_module_privacy->addForeignKeyConstraint($table_module, ['module_name'], ['module_name'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 366 | |||
| 367 | $table_module_setting = $schema->createTable($prefix . 'module_setting'); |
||
| 368 | $table_module_setting->addColumn('module_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'utf8mb4_bin']]); |
||
| 369 | $table_module_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 370 | $table_module_setting->addColumn('setting_value', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 371 | $table_module_setting->setPrimaryKey(['module_name', 'setting_name']); |
||
| 372 | $table_module_setting->addForeignKeyConstraint($table_module, ['module_name'], ['module_name'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 373 | |||
| 374 | $table_name = $schema->createTable($prefix . 'name'); |
||
| 375 | $table_name->addColumn('n_file', Types::INTEGER); |
||
| 376 | $table_name->addColumn('n_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 377 | $table_name->addColumn('n_num', Types::INTEGER); |
||
| 378 | $table_name->addColumn('n_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 379 | $table_name->addColumn('n_sort', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 380 | $table_name->addColumn('n_full', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 381 | $table_name->addColumn('n_surname', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 382 | $table_name->addColumn('n_surn', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 383 | $table_name->addColumn('n_givn', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 384 | $table_name->addColumn('n_soundex_givn_std', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 385 | $table_name->addColumn('n_soundex_surn_std', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 386 | $table_name->addColumn('n_soundex_givn_dm', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 387 | $table_name->addColumn('n_soundex_surn_dm', Types::STRING, ['length' => 255, 'notNull' => false, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 388 | $table_name->setPrimaryKey(['n_id', 'n_file', 'n_num']); |
||
| 389 | $table_name->addIndex(['n_full', 'n_id', 'n_file']); |
||
| 390 | $table_name->addIndex(['n_surn', 'n_file', 'n_type', 'n_id']); |
||
| 391 | $table_name->addIndex(['n_givn', 'n_file', 'n_type', 'n_id']); |
||
| 392 | |||
| 393 | $table_news = $schema->createTable($prefix . 'news'); |
||
| 394 | $table_news->addColumn('news_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 395 | $table_news->addColumn('user_id', Types::INTEGER, ['notNull' => false]); |
||
| 396 | $table_news->addColumn('gedcom_id', Types::INTEGER, ['notNull' => false]); |
||
| 397 | $table_news->addColumn('subject', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 398 | $table_news->addColumn('body', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 399 | $table_news->addColumn('updated', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]); |
||
| 400 | $table_news->setPrimaryKey(['news_id']); |
||
| 401 | $table_news->addIndex(['user_id', 'updated']); |
||
| 402 | $table_news->addIndex(['gedcom_id', 'updated']); |
||
| 403 | $table_news->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 404 | $table_news->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 405 | |||
| 406 | $table_other = $schema->createTable($prefix . 'other'); |
||
| 407 | $table_other->addColumn('o_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 408 | $table_other->addColumn('o_file', Types::INTEGER); |
||
| 409 | $table_other->addColumn('o_type', Types::STRING, ['length' => 15, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 410 | $table_other->addColumn('o_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 411 | $table_other->setPrimaryKey(['o_id', 'o_file']); |
||
| 412 | $table_other->addUniqueIndex(['o_file', 'o_id']); |
||
| 413 | |||
| 414 | $table_places = $schema->createTable($prefix . 'places'); |
||
| 415 | $table_places->addColumn('p_id', Types::INTEGER, ['autoincrement' => true]); |
||
| 416 | $table_places->addColumn('p_place', Types::STRING, ['length' => 150, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 417 | $table_places->addColumn('p_parent_id', Types::INTEGER, ['notNull' => false]); |
||
| 418 | $table_places->addColumn('p_file', Types::INTEGER); |
||
| 419 | $table_places->addColumn('p_std_soundex', Types::TEXT, ['platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 420 | $table_places->addColumn('p_dm_soundex', Types::TEXT, ['platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 421 | $table_places->setPrimaryKey(['p_id']); |
||
| 422 | $table_places->addUniqueIndex(['p_parent_id', 'p_file', 'p_place']); |
||
| 423 | $table_places->addIndex(['p_file', 'p_place']); |
||
| 424 | |||
| 425 | $table_placelinks = $schema->createTable($prefix . 'placelinks'); |
||
| 426 | $table_placelinks->addColumn('pl_p_id', Types::INTEGER); |
||
| 427 | $table_placelinks->addColumn('pl_gid', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 428 | $table_placelinks->addColumn('pl_file', Types::INTEGER); |
||
| 429 | $table_placelinks->setPrimaryKey(['pl_p_id', 'pl_gid', 'pl_file']); |
||
| 430 | $table_placelinks->addIndex(['pl_p_id']); |
||
| 431 | $table_placelinks->addIndex(['pl_gid']); |
||
| 432 | $table_placelinks->addIndex(['pl_file']); |
||
| 433 | |||
| 434 | $table_place_location = $schema->createTable($prefix . 'place_location'); |
||
| 435 | $table_place_location->addColumn('id', Types::INTEGER, ['autoincrement' => true]); |
||
| 436 | $table_place_location->addColumn('parent_id', Types::INTEGER, ['notNull' => false]); |
||
| 437 | $table_place_location->addColumn('place', Types::STRING, ['length' => 120, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 438 | $table_place_location->addColumn('latitude', Types::FLOAT, ['notNull' => false]); |
||
| 439 | $table_place_location->addColumn('longitude', Types::FLOAT, ['notNull' => false]); |
||
| 440 | $table_place_location->setPrimaryKey(['id']); |
||
| 441 | $table_place_location->addUniqueIndex(['parent_id', 'place']); |
||
| 442 | $table_place_location->addUniqueIndex(['place', 'parent_id']); |
||
| 443 | $table_place_location->addIndex(['latitude']); |
||
| 444 | $table_place_location->addIndex(['longitude']); |
||
| 445 | $table_place_location->addForeignKeyConstraint($table_place_location, ['parent_id'], ['id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 446 | |||
| 447 | $table_sources = $schema->createTable($prefix . 'session'); |
||
| 448 | $table_sources->addColumn('session_id', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 449 | $table_sources->addColumn('session_time', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'precision' => 0]); |
||
| 450 | $table_sources->addColumn('user_id', Types::INTEGER); |
||
| 451 | $table_sources->addColumn('ip_address', Types::STRING, ['length' => 45, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 452 | $table_sources->addColumn('session_data', Types::BLOB); |
||
| 453 | $table_sources->setPrimaryKey(['session_id']); |
||
| 454 | $table_sources->addIndex(['session_time']); |
||
| 455 | $table_sources->addIndex(['user_id', 'ip_address']); |
||
| 456 | |||
| 457 | $table_site_setting = $schema->createTable($prefix . 'site_setting'); |
||
| 458 | $table_site_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 459 | $table_site_setting->addColumn('setting_value', Types::STRING, ['length' => 2000, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 460 | $table_site_setting->setPrimaryKey(['setting_name']); |
||
| 461 | |||
| 462 | $table_sources = $schema->createTable($prefix . 'sources'); |
||
| 463 | $table_sources->addColumn('s_id', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 464 | $table_sources->addColumn('s_file', Types::INTEGER); |
||
| 465 | $table_sources->addColumn('s_name', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 466 | $table_sources->addColumn('s_gedcom', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 467 | $table_sources->setPrimaryKey(['s_id', 's_file']); |
||
| 468 | $table_sources->addUniqueIndex(['s_file', 's_id']); |
||
| 469 | $table_sources->addIndex(['s_name']); |
||
| 470 | |||
| 471 | $table_user_gedcom_setting = $schema->createTable($prefix . 'user_gedcom_setting'); |
||
| 472 | $table_user_gedcom_setting->addColumn('user_id', Types::INTEGER); |
||
| 473 | $table_user_gedcom_setting->addColumn('gedcom_id', Types::INTEGER); |
||
| 474 | $table_user_gedcom_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 475 | $table_user_gedcom_setting->addColumn('setting_value', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 476 | $table_user_gedcom_setting->setPrimaryKey(['user_id', 'gedcom_id', 'setting_name']); |
||
| 477 | $table_user_gedcom_setting->addIndex(['gedcom_id']); |
||
| 478 | $table_user_gedcom_setting->addForeignKeyConstraint($table_gedcom, ['gedcom_id'], ['gedcom_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 479 | $table_user_gedcom_setting->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 480 | |||
| 481 | $table_user_setting = $schema->createTable($prefix . 'user_setting'); |
||
| 482 | $table_user_setting->addColumn('user_id', Types::INTEGER); |
||
| 483 | $table_user_setting->addColumn('setting_name', Types::STRING, ['length' => 32, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 484 | $table_user_setting->addColumn('setting_value', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 485 | $table_user_setting->setPrimaryKey(['user_id', 'setting_name']); |
||
| 486 | $table_user_setting->addForeignKeyConstraint($table_user, ['user_id'], ['user_id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 487 | |||
| 488 | /* |
||
| 489 | $site = $schema->createTable($prefix . 'site'); |
||
| 490 | $site->addColumn('uuid', Types::STRING, ['length' => 36, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 491 | $site->addColumn('db_schema', Types::STRING, ['length' => 20, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 492 | $site->addColumn('created_at', Types::TIME_MUTABLE); |
||
| 493 | $site->addColumn('updated_at', Types::TIME_MUTABLE); |
||
| 494 | $site->setPrimaryKey(['uuid']); |
||
| 495 | |||
| 496 | $job = $schema->createTable($prefix . 'job'); |
||
| 497 | $job->addColumn('uuid', Types::STRING, ['length' => 36, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 498 | $job->addColumn('failures', Types::INTEGER, ['default' => 0]); |
||
| 499 | $job->addColumn('job', Types::STRING, ['length' => 255, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 500 | $job->addColumn('parameters', Types::TEXT, ['platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 501 | $job->addColumn('error', Types::TEXT, ['notnull' => false, 'platformOptions' => ['collation' => 'utf8mb4_unicode_ci']]); |
||
| 502 | $job->addColumn('created_at', Types::TIME_MUTABLE); |
||
| 503 | $job->addColumn('updated_at', Types::TIME_MUTABLE); |
||
| 504 | $job->setPrimaryKey(['uuid']); |
||
| 505 | |||
| 506 | $job_dependency = $schema->createTable($prefix . 'job_dependency'); |
||
| 507 | $job_dependency->addColumn('uuid1', Types::STRING, ['length' => 36, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 508 | $job_dependency->addColumn('uuid2', Types::STRING, ['length' => 36, 'platformOptions' => ['collation' => 'ascii_bin']]); |
||
| 509 | $job_dependency->addUniqueIndex(['uuid1', 'uuid2']); |
||
| 510 | $job_dependency->addUniqueIndex(['uuid2', 'uuid1']); |
||
| 511 | $job_dependency->addForeignKeyConstraint($job, ['uuid1'], ['uuid'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 512 | $job_dependency->addForeignKeyConstraint($job, ['uuid2'], ['uuid'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); |
||
| 513 | */ |
||
| 514 | |||
| 515 | $comparator = $schema_manager->createComparator(); |
||
| 516 | $difference = $comparator->compareSchemas($current_schema, $schema); |
||
| 517 | $queries = $difference->toSaveSql($platform); |
||
| 518 | |||
| 519 | /* |
||
| 520 | function f(string $query): int { |
||
| 521 | if (str_contains($query, 'DROP FOREIGN KEY')) { |
||
| 522 | return 1; |
||
| 523 | } |
||
| 524 | if (str_contains($query, 'ADD CONSTRAINT FK_')) { |
||
| 525 | return 3; |
||
| 526 | } |
||
| 527 | return 2; |
||
| 528 | }; |
||
| 529 | |||
| 530 | usort($queries, fn($x, $y) => f($x) <=> f($y)); |
||
| 531 | */ |
||
| 532 | |||
| 533 | foreach ($queries as $query) { |
||
| 534 | echo '<p>', $query, '</p>'; |
||
| 535 | try { |
||
| 536 | $connection->executeStatement($query); |
||
| 537 | } catch (Exception $ex) { |
||
| 538 | echo '<p>', $ex->getMessage(), '</p>'; |
||
| 539 | } |
||
| 540 | } |
||
| 541 | exit; |
||
| 542 | } |
||
| 544 |
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