The migration_state table was missing the last_completed_partition column that was referenced in the migration update queries. This column tracks which partition was last completed to enable accurate resume capability. To apply this change to existing databases: ALTER TABLE migration_state ADD COLUMN last_completed_partition VARCHAR(255); For new databases, the table will be created with the column automatically.
17 lines
436 B
TOML
17 lines
436 B
TOML
[project]
|
|
name = "mysql2postgres"
|
|
version = "0.1.0"
|
|
description = "Robust MySQL to PostgreSQL migration tool with schema transformation and performance benchmarking"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pymysql>=1.1.0",
|
|
"psycopg[binary]>=3.1.0",
|
|
"python-dotenv>=1.0.0",
|
|
"click>=8.1.0",
|
|
"rich>=13.0.0",
|
|
"pydantic>=2.5.0",
|
|
"pydantic-settings>=2.1.0",
|
|
"cryptography>=46.0.3",
|
|
]
|