Implementation of multiple database migrations when multiple db application components are added to Yii 2.0
1. When multiple database connection components have been added in Yii 2.0
'components' => [
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=62.234.135.47;dbname=pcs_api',
'username' => 'sq_pcs',
'password' => '',
'tablePrefix' => 'pa_',
'charset' => 'utf8mb4',
'enableSchemaCache' => false,
'schemaCacheDuration' => 3600,
'schemaCache' => 'redisCache',
],
'statDb' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=62.234.135.47;dbname=pcs_stat',
'username' => 'sq_pcs',
'password' => '',
'tablePrefix' => 'ps_',
'charset' => 'utf8mb4',
],
],
2. The strategy to migrate multiple databases is to store the migration to different directories. A connection component corresponds to a directory. DB directory: /console/migrations/. Directory of statdb: /console/migrations/stat_db/. as shown in Figure 1
3. When generating the migration file under statdb, you need to specify: –migrationpath=@console/migrations/stat_db/ , as shown in Figure 2
PS E:\wwwroot\pcs-stat> ./yii migrate/create stat_task --migrationPath=@console/migrations/stat_db/
Yii Migration Tool (based on Yii v2.0.31)
Create new migration 'E:\wwwroot\pcs-stat/console/migrations/stat_db/\m200520_064341_stat_task.php'? (yes|no) [no]:yes
New migration created successfully.
4. Then you can migrate different databases through the following commands. The first command will submit the migration under the /console/migrations/ directory to the db database, and the second command will submit the migration under /console/migrations/stat_db/ to statdb in the database, and so on. The directory hierarchy supports only one level. as shown in Figure 3
PS E:\wwwroot\pcs-stat> ./yii migrate
Yii Migration Tool (based on Yii v2.0.31)
No new migrations found. Your system is up-to-date.
PS E:\wwwroot\pcs-stat> ./yii migrate --migrationPath=@console/migrations/stat_db/ --db=statDb
Yii Migration Tool (based on Yii v2.0.31)
Creating migration history table "ps_migration"...Done.
Total 2 new migrations to be applied:
m200519_065119_stat_task
m200519_071446_stat_resource
Apply the above migrations? (yes|no) [no]:no
PS E:\wwwroot\pcs-stat> ./yii migrate --migrationPath=@console/migrations/stat_db/ --db=statDb
Yii Migration Tool (based on Yii v2.0.31)
Creating migration history table "ps_migration"...Done.
Total 2 new migrations to be applied:
m200519_065119_stat_task
m200519_071446_stat_resource
Apply the above migrations? (yes|no) [no]:yes
*** applying m200519_065119_stat_task
> create table {{%stat_task}} ... done (time: 0.666s)
> create unique index uc_group_id_code_ca on {{%stat_task}} (group_id,code,created_at) ... done (time: 0.077s)
*** applied m200519_065119_stat_task (time: 1.016s)
*** applying m200519_071446_stat_resource
> create table {{%stat_resource}} ... done (time: 0.762s)
> create unique index uc_group_id_ca on {{%stat_resource}} (group_id,created_at) ... done (time: 0.081s)
*** applied m200519_071446_stat_resource (time: 1.113s)
2 migrations were applied.
Migrated up successfully.
5. Check the migration history in the statdb database, which is in line with expectations. as shown in Figure 4



