{
  "$schema": "https://intentius.io/chant/schemas/component/v1/component.schema.json",
  "contractVersion": "1.0.0",
  "name": "orders-table",
  "archetype": "infra",
  "dependsOn": [],
  "deploy": [
    {
      "phase": "Apply",
      "steps": [
        {
          "kind": "cfn-deploy",
          "template": "archive:orders-table.template.json",
          "onReplace": "block",
          "stageGsi": true
        }
      ]
    },
    {
      "phase": "Verify",
      "parallel": true,
      "steps": [
        { "kind": "wait-for-stack", "stack": "orders-table" },
        {
          "kind": "run-migration",
          "script": "archive:migrations/backfill-gsi.sql",
          "noRollback": "GSI backfill is forward-only; undoing it needs a second, hand-written migration, not automatic compensation"
        }
      ]
    }
  ]
}
