[
  {
    "type": "update",
    "description": "Enable replenishment tracking by default for all stores. Updates existing fpSettings rows from disabled to enabled.",
    "database": "{{store}}",
    "check_query": "SELECT COUNT(*) as count FROM fpSettings WHERE settingKey = 'replenishment_enabled' AND settingValue = '1'",
    "sql": "INSERT INTO fpSettings (settingKey, settingValue) VALUES ('replenishment_enabled', '1') ON DUPLICATE KEY UPDATE settingValue = '1'"
  }
]
