-- Collabs: full MySQL seed for production (phpMyAdmin / mysql client).
-- Import database/schema/mysql-baseline.sql first on an empty DB, OR ensure tables exist.
-- User ids: 1 = augustogsgomes@gmail.com (super admin via SUPER_ADMIN_USER_IDS=1 in .env)
--           2 = spies295@gmail.com (influencer, workspace owner, all partnerships)
-- Passwords: set in INSERT below (bcrypt). Change after first login if exposed.

SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;

USE `novares_collabs-app`;

-- push_subscriptions omitted: table exists only after full baseline / migrations
TRUNCATE TABLE `partnerships`;
TRUNCATE TABLE `workspace_members`;
TRUNCATE TABLE `workspaces`;
TRUNCATE TABLE `user_roles`;
TRUNCATE TABLE `profiles`;
TRUNCATE TABLE `users`;

SET FOREIGN_KEY_CHECKS = 1;

INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Augusto Gomes', 'augustogsgomes@gmail.com', NOW(), '$2y$12$g9USU1eemmfFYeTRwT8ioebiByQpBVwKGgbv84lkd/Lce1Vyh2opq', NULL, NOW(), NOW()),
(2, 'Spies', 'spies295@gmail.com', NOW(), '$2y$12$TY0UoW2uoLxztB7WrpQMEucjuqUpgHO0Z/tNFyBhTyIKxiQBYFdIK', NULL, NOW(), NOW());

INSERT INTO `user_roles` (`user_id`, `role`, `created_at`, `updated_at`) VALUES
(2, 'influencer', NOW(), NOW()),
(1, 'assistant', NOW(), NOW());

INSERT INTO `workspaces` (`id`, `legacy_uuid`, `name`, `owner_id`, `created_at`, `updated_at`) VALUES
(1, NULL, 'Collabs', 2, NOW(), NOW());

INSERT INTO `workspace_members` (`id`, `workspace_id`, `user_id`, `role`, `assists_influencer_user_id`, `paired_restaurant_user_id`, `created_at`, `updated_at`) VALUES
(1, 1, 2, 'influencer', NULL, NULL, NOW(), NOW()),
(2, 1, 1, 'assistant', 2, NULL, NOW(), NOW());

ALTER TABLE `users` AUTO_INCREMENT = 3;
ALTER TABLE `workspaces` AUTO_INCREMENT = 2;
ALTER TABLE `workspace_members` AUTO_INCREMENT = 3;
ALTER TABLE `user_roles` AUTO_INCREMENT = 3;

INSERT INTO `partnerships` (
  `legacy_uuid`, `workspace_id`, `restaurant_name`, `instagram_handle`, `instagram_url`,
  `status`, `scheduled_date`, `scheduled_time`, `inclusions`, `guests`, `notes`, `location`, `post_url`,
  `created_by`, `managed_by_restaurant`, `created_at`, `updated_at`
) VALUES
  ('00baada7-1d37-4773-b320-d15d29395db8', 1, 'Uma Marisqueira Lisboa', 'umamarisqueira_lisboa', 'https://www.instagram.com/umamarisqueira_lisboa', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('077a29cb-232e-47b7-8bfd-eb496c931744', 1, '7 Paintings', '7paintings_com', 'https://www.instagram.com/7paintings_com?igsh=MWw5bXlrZHhhZTZxZw==', 'upcoming', '2026-04-11', '19:00', CAST('{}' AS JSON), NULL, 'Also noted: may wait for confirmation and move to next weekend.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('0d85edd8-66bc-4f14-8459-4aaea2d6ede3', 1, 'Wishbone Lisboa', 'wishbonelisboa', 'https://www.instagram.com/wishbonelisboa?igsh=MWw3OHpmbWhsaHB3cQ==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('10db0e9d-039c-484b-b305-e7a55a008c49', 1, 'Pita Gr Chef Thassos', 'pita.grchefthassos', 'https://www.instagram.com/pita.grchefthassos', 'confirmed', NULL, NULL, CAST('{"mains": 2, "desserts": 2, "starters": 2}' AS JSON), NULL, 'Two starters, two mains, two desserts.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('1dd2bccc-2fd0-438d-883f-1f6bd40cd478', 1, 'Avenida Restaurant & Bar', 'avenidarestaurantbar', NULL, 'upcoming', '2026-05-09', '13:00', CAST('{"description": "Unlimited food"}' AS JSON), 4, 'Up to 4 persons, unlimited food.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('2578344d-4aac-4cf4-b519-60b95af35d9f', 1, 'Original Amazônia', 'originalamazonia', 'https://www.instagram.com/originalamazonia?igsh=N2R2czNhN25vdWFs', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Just need to say what time; açaí + sandwich.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('2887a5a2-f232-4f02-b55d-ae93c318d9d0', 1, 'Pizza Lolo', 'pizzalolopt', 'https://www.instagram.com/pizzalolopt?igsh=Y292cTFybmV0NWd2', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('297d0152-e07b-4315-a4c9-b3899a85a887', 1, 'Eleven', NULL, NULL, 'upcoming', '2026-06-20', '13:00', CAST('{}' AS JSON), NULL, 'Going with a work colleague.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('2c341ebb-49f2-440c-80ba-5337871d27ed', 1, 'Gurkha Momo Lisboa', 'gurkhamomo_lisboa', 'https://www.instagram.com/gurkhamomo_lisboa?igsh=N2dtaDFnN3BqN3Iz', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('3a3ff7ae-f8e4-45f0-b640-06cc17f33572', 1, 'Benilu Brunch', 'benilu_brunch', 'https://www.instagram.com/benilu_brunch', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'During the week.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('45f0b45e-0f9c-4c9a-91d9-db40e7424ae0', 1, 'House of Eors', 'houseofeors', 'https://www.instagram.com/houseofeors', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('4a111711-cbd9-4db4-9cba-d57b3f502f45', 1, 'Gurkha Momo Lisboa', 'gurkhamomo_lisboa', 'https://www.instagram.com/gurkhamomo_lisboa?igsh=N2dtaDFnN3BqN3Iz', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('4af8ff38-a0d8-4cbb-a94d-cd7d8fbe1c1e', 1, 'Nicola Restaurante', 'nicolarestaurante', 'https://www.instagram.com/nicolarestaurante?igsh=MW9lZmZ5aDN5NXM1MA==', 'upcoming', '2026-04-18', '18:00', CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('4b76b4de-e967-4761-88c9-9e314cb43622', 1, 'Porto (IG collab)', NULL, 'https://www.instagram.com/p/DUBADFZgnrf/?igsh=bjF3NmlncnhhY2xo', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, 'Porto', NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('4e81221a-016e-4c69-8af0-f7084b75b862', 1, 'Pita Gr Chef Thassos', 'pita.grchefthassos', 'https://www.instagram.com/pita.grchefthassos', 'confirmed', NULL, NULL, CAST('{"mains": 2, "desserts": 2, "starters": 2}' AS JSON), NULL, 'Two starters, two mains, two desserts.', NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('50508f77-2033-4fec-8105-a1b5d3d70ad8', 1, 'Pomme Eatery', 'pomme_eatery', 'https://www.instagram.com/pomme_eatery', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Said yes.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('5117a4fa-374e-43d1-94c8-d9a5cb911977', 1, 'Samere Lisbon', 'samere.lisbon', 'https://www.instagram.com/samere.lisbon', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('54ce8964-3e64-45bc-9da2-14e71ae5a5b7', 1, 'Sangines Portugal', 'sanginesportugal', 'https://www.instagram.com/sanginesportugal?igsh=MWlmZ3kzMmp4MnEyYg==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Chocolate brunch.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('55b5afb6-da70-49e0-a4fc-5b0935b0e154', 1, 'Porto (IG collab)', NULL, 'https://www.instagram.com/p/DUBADFZgnrf/?igsh=bjF3NmlncnhhY2xo', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, 'Porto', NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('5d05219f-9477-4a4f-a3d1-404d527e8d74', 1, 'Nicola Restaurante', 'nicolarestaurante', 'https://www.instagram.com/nicolarestaurante?igsh=MW9lZmZ5aDN5NXM1MA==', 'confirmed', '2026-04-18', NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('5da5b8bc-b387-4881-b3c9-936ea6bad9c9', 1, 'Blade Steak', 'blade.steak', 'https://www.instagram.com/blade.steak', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('5efe80a5-79a0-4d43-a6b4-62a57d2a6711', 1, 'Samere Lisbon', 'samere.lisbon', 'https://www.instagram.com/samere.lisbon', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('630be666-892d-4ccb-b4b1-104ed8bb168a', 1, 'Poke na Praia', 'pokenapraiapt', 'https://www.instagram.com/pokenapraiapt?igsh=eXJqZ2xqY3JrcjRk', 'confirmed', NULL, NULL, CAST('{}' AS JSON), 2, 'Poke bowls at the beach.', 'Cascais', NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('6a1fd2cd-6a67-44db-9084-50a72280b265', 1, 'Nicola Restaurante', 'nicolarestaurante', 'https://www.instagram.com/nicolarestaurante?igsh=MW9lZmZ5aDN5NXM1MA==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Said yes; April 18 visit also scheduled.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('6a6e53d5-edb3-43da-b3de-b7d991953889', 1, 'The 44 Bar', 'the44.bar', 'https://www.instagram.com/the44.bar?igsh=MTUxOGo2dWhpbGIzdQ==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('6b0f5bee-4cc9-4936-bd64-6fdc34445e5a', 1, 'Polpetta Cosmica', 'polpettacosmica', 'https://www.instagram.com/polpettacosmica?igsh=dDZxOHp0Nnc1M3U4', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('6f21eddc-327e-43a7-a3b8-c96ef2af49c8', 1, 'Napizza', 'napizza.pt', 'https://www.instagram.com/napizza.pt', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('8091432e-fa85-44ba-a0b9-bbcf25423932', 1, 'Benilu Brunch', 'benilu_brunch', 'https://www.instagram.com/benilu_brunch', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'During the week.', NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('86ec9182-f61a-4265-95c8-642fe9763b9a', 1, 'Santelmo Lisboa', 'santelmolisboa', 'https://www.instagram.com/santelmolisboa?igsh=MTJjaXY2M2l3YzNndQ==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Need to wait for feedback.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('87ed3eeb-fb7a-4a35-95ca-192b2a63d3c4', 1, 'Eleven', NULL, NULL, 'upcoming', '2026-06-20', '13:00', CAST('{}' AS JSON), NULL, 'Will go with a work colleague.', NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('8e5c4c13-534e-4633-ad02-d1bd95c2e54f', 1, 'Pizza Lolo', 'pizzalolopt', 'https://www.instagram.com/pizzalolopt?igsh=Y292cTFybmV0NWd2', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('8ef06d15-39d2-4766-bc51-4ea967602ff7', 1, 'Avenida Restaurant & Bar', 'avenidarestaurantbar', 'https://www.instagram.com/avenidarestaurantbar', 'upcoming', '2026-05-09', '13:00', CAST('{"description": "Unlimited food"}' AS JSON), 4, 'Up to 4 persons, unlimited food.', NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('947f837f-1fb7-4bd8-b53e-c6444af180fe', 1, 'Diora Brunch Lisboa', 'diora.brunch.lisboa', 'https://www.instagram.com/diora.brunch.lisboa?igsh=anJnN3Z5N3g3N3Jq', 'upcoming', '2026-04-11', '11:00', CAST('{}' AS JSON), NULL, NULL, 'Av. António Augusto de Aguiar 13B, Lisboa', NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('949624d6-7529-4d37-99a5-53ea539d6999', 1, 'The 44 Bar', 'the44.bar', 'https://www.instagram.com/the44.bar?igsh=MTUxOGo2dWhpbGIzdQ==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('9e402b6e-cf1f-4b53-a994-f5bb34e2188a', 1, 'Original Amazônia', 'originalamazonia', 'https://www.instagram.com/originalamazonia?igsh=N2R2czNhN25vdWFs', 'confirmed', NULL, NULL, CAST('{"description": "açaí + sandwich"}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('a103216f-57ce-4b32-9ace-85d8ef8c4705', 1, 'Avenida Restaurant & Bar', 'avenidarestaurantbar', 'https://www.instagram.com/avenidarestaurantbar', 'confirmed', '2026-05-09', '13:00', CAST('{}' AS JSON), 2, NULL, 'Rua Santa Marta n 25, Lisbon, Portugal 1150-289', NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('ac105dab-6936-4e76-8505-4f802bda54a8', 1, 'Vertigo Lisboa', 'vertigo.lisboa', 'https://www.instagram.com/vertigo.lisboa?igsh=MWl3bHEybmk5dmszZA==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Need to wait for reschedule.', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('b2c59958-e8eb-4a71-ba67-7b2a03f11833', 1, 'Napizza', 'napizza.pt', 'https://www.instagram.com/napizza.pt', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('c02fd987-c581-4be6-b9c1-1bd33714f46e', 1, 'Pomme Eatery', 'pomme_eatery', 'https://www.instagram.com/pomme_eatery', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Said yes.', NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('c0cdb4c1-4143-4eb8-af84-6607c30b9050', 1, 'House of Eors', 'houseofeors', 'https://www.instagram.com/houseofeors', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('c2dfdacf-8cf5-498d-bb9d-c5e21536df26', 1, 'Chickinho', 'chickinho.pt', 'https://www.instagram.com/chickinho.pt?igsh=MTAwNW92cGN0bjF4aQ==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'UBBO', NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('c9f8c86d-1f07-48fc-9722-f398bcc84959', 1, 'Sangines Portugal', 'sanginesportugal', 'https://www.instagram.com/sanginesportugal?igsh=MWlmZ3kzMmp4MnEyYg==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Chocolate brunch.', NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('c9fe3f96-7277-4921-8189-c8181d8dc1df', 1, 'Santelmo Lisboa', 'santelmolisboa', 'https://www.instagram.com/santelmolisboa?igsh=MTJjaXY2M2l3YzNndQ==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Need to wait for feedback.', NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('ce486b54-0e2b-4845-91ba-84ae4710c8fe', 1, 'Vertigo Lisboa', 'vertigo.lisboa', 'https://www.instagram.com/vertigo.lisboa?igsh=MWl3bHEybmk5dmszZA==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, 'Need to wait for reschedule.', NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('da28bb3e-75c1-4086-b1e9-dbd53e90f410', 1, 'Diora Brunch Lisboa', 'diora.brunch.lisboa', 'https://www.instagram.com/diora.brunch.lisboa?igsh=anJnN3Z5N3g3N3Jq', 'upcoming', '2026-04-11', '11:00', CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('de52b384-fe44-4763-898d-f005b2851c8a', 1, 'Grand Café Lisboa', 'grand.cafe.lisboa', 'https://www.instagram.com/grand.cafe.lisboa?igsh=MzlpcXZhcnZ3bTlj', 'upcoming', '2026-04-10', '16:30', CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('df4a15ef-c79d-4596-b16b-e205b66810b7', 1, '7 Paintings', '7paintings_com', 'https://www.instagram.com/7paintings_com?igsh=MWw5bXlrZHhhZTZxZw==', 'upcoming', '2026-04-11', '19:00', CAST('{}' AS JSON), 2, NULL, 'Inside DUO Hotel Lisbon, Curio Collection by Hilton, Rua Dom Luís I 18, 1200-151 Lisboa', NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('e678aa78-a6f5-4d39-9416-a75ded8278b7', 1, 'Polpetta Cosmica', 'polpettacosmica', 'https://www.instagram.com/polpettacosmica?igsh=dDZxOHp0Nnc1M3U4', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('e9bb3699-7a95-47b1-bef4-8d07c4c3f4de', 1, 'Uma Marisqueira Lisboa', 'umamarisqueira_lisboa', 'https://www.instagram.com/umamarisqueira_lisboa', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('ea32ac80-99a1-456e-bdb4-9580e049a330', 1, 'Wishbone Lisboa', 'wishbonelisboa', 'https://www.instagram.com/wishbonelisboa?igsh=MWw3OHpmbWhsaHB3cQ==', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('ec948c96-8c21-4367-8f7c-d3a183988cbb', 1, 'Poke na Praia', 'pokenapraiapt', 'https://www.instagram.com/pokenapraiapt?igsh=eXJqZ2xqY3JrcjRk', 'confirmed', NULL, NULL, CAST('{"description": "Poké bowls at the beach"}' AS JSON), 2, NULL, 'Cascais', NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('eee93700-6cd4-4994-9073-ad49a4821b20', 1, 'Blade Steak', 'blade.steak', 'https://www.instagram.com/blade.steak', 'confirmed', NULL, NULL, CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:02:39', '2026-04-10 18:02:39'),
  ('f28afbc4-8607-4c3d-8632-1c112a39ab4d', 1, 'Grand Café Lisboa', 'grand.cafe.lisboa', 'https://www.instagram.com/grand.cafe.lisboa?igsh=MzlpcXZhcnZ3bTlj', 'upcoming', '2026-04-13', '08:30', CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52'),
  ('f4d6de23-841a-4e3e-b1d9-f11a16bc14b7', 1, 'Nicola Restaurante', 'nicolarestaurante', 'https://www.instagram.com/nicolarestaurante?igsh=MW9lZmZ5aDN5NXM1MA==', 'upcoming', '2026-04-18', '18:00', CAST('{}' AS JSON), NULL, NULL, NULL, NULL, 2, NULL, '2026-04-10 18:08:52', '2026-04-10 18:08:52');
