Migration complete

This commit is contained in:
2026-06-23 19:24:38 +02:00
parent 279160c1cb
commit 64b26ef059
126 changed files with 8121 additions and 221 deletions

View File

@@ -136,6 +136,32 @@ return [
'database' => env('DISCORD_DB_PATH'),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
],
// Migration.
'old_wp' => [
'driver' => 'mysql',
'host' => env('MIG_WP_DB_HOST'),
'port' => env('MIG_WP_DB_PORT', '3306'),
'database' => env('MIG_WP_DB_NAME'),
'username' => env('MIG_WP_DB_USERNAME'),
'password' => env('MIG_WP_DB_PASSWORD'),
'charset' => env('MIG_WP_DB_CHARSET', 'utf8mb4'),
'prefix' => 'wp_',
'collation' => 'utf8mb4_unicode_ci',
],
'old_xf' => [
'driver' => 'mysql',
'host' => env('MIG_XF_DB_HOST'),
'port' => env('MIG_XF_DB_PORT', '3306'),
'database' => env('MIG_XF_DB_NAME'),
'username' => env('MIG_XF_DB_USERNAME'),
'password' => env('MIG_XF_DB_PASSWORD'),
'charset' => env('MIG_XF_DB_CHARSET', 'utf8mb4'),
'prefix' => 'xf_',
'collation' => 'utf8mb4_unicode_ci',
]
],