[
  {
    "type": "create_table",
    "description": "Create fpFixtureTypes table - store fixtures and drawing elements",
    "database": "{{store}}",
    "check_query": "SHOW TABLES LIKE 'fpFixtureTypes'",
    "sql": "CREATE TABLE `fpFixtureTypes` (\n  `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,\n  `name` VARCHAR(100) NOT NULL,\n  `description` TEXT NULL,\n  `category` VARCHAR(50) NULL COMMENT 'Checkout, Fitting, Display, Infrastructure, Furniture, Signage, Storage',\n  `icon` VARCHAR(50) NULL COMMENT 'Font Awesome icon class',\n  `shape` ENUM('rectangle','circle','custom') DEFAULT 'rectangle',\n  `defaultWidth` INT DEFAULT 60,\n  `defaultHeight` INT DEFAULT 60,\n  `fillColor` VARCHAR(20) DEFAULT '#e2e8f0',\n  `strokeColor` VARCHAR(20) DEFAULT '#64748b',\n  `isActive` TINYINT(1) DEFAULT 1,\n  `sortOrder` INT DEFAULT 0,\n  `created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  INDEX `idx_fixture_category` (`category`),\n  INDEX `idx_fixture_active` (`isActive`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Floor plan fixture types'"
  },
  {
    "type": "insert",
    "description": "Seed fpFixtureTypes defaults",
    "database": "{{store}}",
    "table": "fpFixtureTypes",
    "check_query": "SELECT COUNT(*) AS cnt FROM fpFixtureTypes",
    "data": [
      {"name": "POS Station", "description": "Point of sale terminal/computer", "category": "Checkout", "icon": "fa-desktop", "shape": "rectangle", "defaultWidth": 60, "defaultHeight": 40, "fillColor": "#dbeafe", "strokeColor": "#3b82f6", "sortOrder": 1},
      {"name": "Checkout Counter", "description": "Main checkout counter", "category": "Checkout", "icon": "fa-cash-register", "shape": "rectangle", "defaultWidth": 120, "defaultHeight": 50, "fillColor": "#dbeafe", "strokeColor": "#3b82f6", "sortOrder": 2},
      {"name": "Cash Wrap", "description": "Cash wrap station", "category": "Checkout", "icon": "fa-money-bill-wave", "shape": "rectangle", "defaultWidth": 100, "defaultHeight": 60, "fillColor": "#dbeafe", "strokeColor": "#3b82f6", "sortOrder": 3},
      {"name": "Card Reader Stand", "description": "Card payment terminal stand", "category": "Checkout", "icon": "fa-credit-card", "shape": "rectangle", "defaultWidth": 30, "defaultHeight": 30, "fillColor": "#dbeafe", "strokeColor": "#3b82f6", "sortOrder": 4},
      {"name": "Fitting Room", "description": "Customer fitting/changing room", "category": "Fitting", "icon": "fa-door-closed", "shape": "rectangle", "defaultWidth": 80, "defaultHeight": 80, "fillColor": "#fce7f3", "strokeColor": "#ec4899", "sortOrder": 10},
      {"name": "Mirror", "description": "Full-length mirror", "category": "Fitting", "icon": "fa-expand", "shape": "rectangle", "defaultWidth": 40, "defaultHeight": 80, "fillColor": "#f0f9ff", "strokeColor": "#0ea5e9", "sortOrder": 11},
      {"name": "Fitting Bench", "description": "Seating bench near fitting rooms", "category": "Fitting", "icon": "fa-couch", "shape": "rectangle", "defaultWidth": 60, "defaultHeight": 30, "fillColor": "#fef3c7", "strokeColor": "#f59e0b", "sortOrder": 12},
      {"name": "Display Table", "description": "Product display table", "category": "Display", "icon": "fa-table", "shape": "rectangle", "defaultWidth": 80, "defaultHeight": 60, "fillColor": "#d1fae5", "strokeColor": "#10b981", "sortOrder": 20},
      {"name": "Mannequin Platform", "description": "Raised platform for mannequins", "category": "Display", "icon": "fa-user", "shape": "circle", "defaultWidth": 50, "defaultHeight": 50, "fillColor": "#d1fae5", "strokeColor": "#10b981", "sortOrder": 21},
      {"name": "Feature Wall", "description": "Featured product wall display", "category": "Display", "icon": "fa-grip-vertical", "shape": "rectangle", "defaultWidth": 120, "defaultHeight": 20, "fillColor": "#d1fae5", "strokeColor": "#10b981", "sortOrder": 22},
      {"name": "End Cap Display", "description": "End cap promotional display", "category": "Display", "icon": "fa-th-large", "shape": "rectangle", "defaultWidth": 50, "defaultHeight": 80, "fillColor": "#d1fae5", "strokeColor": "#10b981", "sortOrder": 23},
      {"name": "Wall", "description": "Interior wall or partition", "category": "Infrastructure", "icon": "fa-grip-lines", "shape": "rectangle", "defaultWidth": 200, "defaultHeight": 10, "fillColor": "#374151", "strokeColor": "#111827", "sortOrder": 30},
      {"name": "Door", "description": "Entrance/exit door", "category": "Infrastructure", "icon": "fa-door-open", "shape": "rectangle", "defaultWidth": 50, "defaultHeight": 10, "fillColor": "#fef3c7", "strokeColor": "#f59e0b", "sortOrder": 31},
      {"name": "Emergency Exit", "description": "Emergency exit door", "category": "Infrastructure", "icon": "fa-sign-out-alt", "shape": "rectangle", "defaultWidth": 50, "defaultHeight": 10, "fillColor": "#fee2e2", "strokeColor": "#ef4444", "sortOrder": 32},
      {"name": "Pillar", "description": "Support pillar or column", "category": "Infrastructure", "icon": "fa-square", "shape": "rectangle", "defaultWidth": 30, "defaultHeight": 30, "fillColor": "#9ca3af", "strokeColor": "#4b5563", "sortOrder": 33},
      {"name": "Stairs", "description": "Staircase", "category": "Infrastructure", "icon": "fa-stairs", "shape": "rectangle", "defaultWidth": 80, "defaultHeight": 40, "fillColor": "#9ca3af", "strokeColor": "#4b5563", "sortOrder": 34},
      {"name": "Chair", "description": "Seating chair", "category": "Furniture", "icon": "fa-chair", "shape": "rectangle", "defaultWidth": 30, "defaultHeight": 30, "fillColor": "#fef3c7", "strokeColor": "#f59e0b", "sortOrder": 40},
      {"name": "Sofa", "description": "Customer seating sofa", "category": "Furniture", "icon": "fa-couch", "shape": "rectangle", "defaultWidth": 80, "defaultHeight": 40, "fillColor": "#fef3c7", "strokeColor": "#f59e0b", "sortOrder": 41},
      {"name": "Table", "description": "General purpose table", "category": "Furniture", "icon": "fa-border-all", "shape": "rectangle", "defaultWidth": 60, "defaultHeight": 40, "fillColor": "#fef3c7", "strokeColor": "#f59e0b", "sortOrder": 42},
      {"name": "Shelf Unit", "description": "Storage shelf unit", "category": "Furniture", "icon": "fa-layer-group", "shape": "rectangle", "defaultWidth": 60, "defaultHeight": 30, "fillColor": "#fef3c7", "strokeColor": "#f59e0b", "sortOrder": 43},
      {"name": "Floor Sign", "description": "Standing floor sign", "category": "Signage", "icon": "fa-sign", "shape": "rectangle", "defaultWidth": 30, "defaultHeight": 50, "fillColor": "#e0e7ff", "strokeColor": "#6366f1", "sortOrder": 50},
      {"name": "Hanging Sign", "description": "Overhead hanging sign", "category": "Signage", "icon": "fa-heading", "shape": "rectangle", "defaultWidth": 80, "defaultHeight": 20, "fillColor": "#e0e7ff", "strokeColor": "#6366f1", "sortOrder": 51},
      {"name": "Digital Display", "description": "Digital signage screen", "category": "Signage", "icon": "fa-tv", "shape": "rectangle", "defaultWidth": 60, "defaultHeight": 40, "fillColor": "#e0e7ff", "strokeColor": "#6366f1", "sortOrder": 52},
      {"name": "Storage Room", "description": "Back storage room area", "category": "Storage", "icon": "fa-warehouse", "shape": "rectangle", "defaultWidth": 100, "defaultHeight": 80, "fillColor": "#f3f4f6", "strokeColor": "#6b7280", "sortOrder": 60},
      {"name": "Back Stock Area", "description": "Back stock inventory area", "category": "Storage", "icon": "fa-boxes", "shape": "rectangle", "defaultWidth": 80, "defaultHeight": 60, "fillColor": "#f3f4f6", "strokeColor": "#6b7280", "sortOrder": 61},
      {"name": "Safe", "description": "Store safe location", "category": "Storage", "icon": "fa-lock", "shape": "rectangle", "defaultWidth": 40, "defaultHeight": 40, "fillColor": "#374151", "strokeColor": "#111827", "sortOrder": 62}
    ]
  }
]
