diff --git a/supabase/migrations/20251112043249_6cb4d237-b48b-4a20-b946-225b8b5a4509.sql b/supabase/migrations/20251112043249_6cb4d237-b48b-4a20-b946-225b8b5a4509.sql new file mode 100644 index 00000000..7f0abc07 --- /dev/null +++ b/supabase/migrations/20251112043249_6cb4d237-b48b-4a20-b946-225b8b5a4509.sql @@ -0,0 +1,16 @@ +-- Run backfill to populate missing park locations +DO $$ +DECLARE + v_result jsonb; +BEGIN + RAISE NOTICE '========================================'; + RAISE NOTICE 'Running backfill_park_locations()...'; + RAISE NOTICE '========================================'; + + SELECT backfill_park_locations() INTO v_result; + + RAISE NOTICE '========================================'; + RAISE NOTICE 'Backfill Complete!'; + RAISE NOTICE 'Result: %', v_result; + RAISE NOTICE '========================================'; +END $$; \ No newline at end of file