[
  {
    "type": "insert",
    "description": "Insert sample seller marketing message templates",
    "database": "{{store}}",
    "check_query": "SELECT COUNT(*) FROM seller_marketing_messages WHERE name IN ('Welcome Back', 'Birthday Greeting', 'New Arrivals', 'Thank You')",
    "expected_count": 4,
    "sql": "INSERT INTO `seller_marketing_messages` (`name`, `content`, `variables`, `category`, `character_count`, `sms_count`, `active`) VALUES\n('Welcome Back', 'Hi %customer%! We miss you at %company%. Come back and see what new items we have! Reply STOP to opt out.', '{\"customer\": \"Customer first name\", \"company\": \"Store name\"}', 'trigger', 116, 1, 1),\n('Birthday Greeting', 'Happy Birthday %customer%! Celebrate with us at %company% and enjoy a special birthday discount! Reply STOP to opt out.', '{\"customer\": \"Customer first name\", \"company\": \"Store name\"}', 'trigger', 128, 1, 1),\n('New Arrivals', 'Hey %customer%! New arrivals just came in at %company%. Stop by to see the latest items! Reply STOP to opt out.', '{\"customer\": \"Customer first name\", \"company\": \"Store name\"}', 'blast', 117, 1, 1),\n('Thank You', 'Thank you for selling with us, %customer%! Your items are ready for pickup at %company%. Reply STOP to opt out.', '{\"customer\": \"Customer first name\", \"company\": \"Store name\"}', 'trigger', 122, 1, 1)"
  }
]