[
  {
    "type": "alter_table",
    "description": "Add comments column to customerSurvey for stores that are missing it (57 stores)",
    "database": "{{store}}",
    "check_query": "SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'customerSurvey' AND COLUMN_NAME = 'comments'",
    "sql": "ALTER TABLE `customerSurvey` ADD COLUMN `comments` TEXT DEFAULT NULL"
  }
]
