2026-01-08 03:16:23.769 5736 INFO migrate.versioning.api [-] done
2026-01-08 03:16:23.769 5736 INFO migrate.versioning.api [-] 13 -> 14...
2026-01-08 03:16:23.778 5736 CRITICAL coriolis [-] Unhandled error: oslo_db.exception.DBMigrationError: (pymysql.err.OperationalError) (1005, 'Can\'t create table `coriolis`.`endpoint_region_mapping` (errno: 150 "Foreign key constraint is incorrectly formed")')
[SQL:
CREATE TABLE endpoint_region_mapping (
id VARCHAR(36) NOT NULL,
endpoint_id VARCHAR(36) NOT NULL,
region_id VARCHAR(36) NOT NULL,
created_at DATETIME,
updated_at DATETIME,
deleted_at DATETIME,
deleted VARCHAR(36),
PRIMARY KEY (id),
FOREIGN KEY(endpoint_id) REFERENCES endpoint (id),
FOREIGN KEY(region_id) REFERENCES region (id)
)
]