[
  {
    "type": "alter_table",
    "description": "Add schedulePanelEnabled feature-flag column to stores table. Controls whether the workspace 'Team' schedule panel (right sidebar) is shown. Default 1 preserves existing behavior; store owners can turn it off in Store Configuration.",
    "database": "kiosk_buykiosk",
    "check_query": "SELECT COLUMN_NAME FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'kiosk_buykiosk' AND TABLE_NAME = 'stores' AND COLUMN_NAME = 'schedulePanelEnabled'",
    "sql": "ALTER TABLE `stores` ADD COLUMN `schedulePanelEnabled` TINYINT(1) NOT NULL DEFAULT 1 COMMENT 'Show the workspace Team schedule panel (right sidebar). 0 = hidden.'"
  }
]
