#!/usr/bin/env python3
"""Sprint 7C-F1 copy-first medication capture hotfix migration.

The audited copy/backup/idempotency/restore implementation remains centralized in
the Sprint 7C-F migrator; the schema module now applies only the additive F1
version-8 extension and verified preset.
"""

from migrate_sprint7c_f_medication_schema import main


if __name__ == "__main__":
    raise SystemExit(main())
