From cc2b7ea5c732617b720a99949c3c47abea95941b Mon Sep 17 00:00:00 2001 From: Julien MAIRE Date: Mon, 3 Feb 2025 14:47:24 +0100 Subject: [PATCH] fix: added forgotten migration file. --- supabase/migrations/20240131101200_update_game_state_type.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 supabase/migrations/20240131101200_update_game_state_type.sql diff --git a/supabase/migrations/20240131101200_update_game_state_type.sql b/supabase/migrations/20240131101200_update_game_state_type.sql new file mode 100644 index 0000000..5672339 --- /dev/null +++ b/supabase/migrations/20240131101200_update_game_state_type.sql @@ -0,0 +1,3 @@ +ALTER TABLE games +ALTER COLUMN game_state TYPE JSONB +USING game_state::JSONB;