From 2183ba6a6a780f600146a366433ed4ceeaaf189c Mon Sep 17 00:00:00 2001 From: Joseph Shearer Date: Wed, 1 Nov 2023 12:12:51 -0400 Subject: [PATCH] Update default `data_tiers` to $0.50/gb --- supabase/migrations/38_change_to_gigabytes.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/supabase/migrations/38_change_to_gigabytes.sql b/supabase/migrations/38_change_to_gigabytes.sql index c3c4aa0d70..b32d6c9b15 100644 --- a/supabase/migrations/38_change_to_gigabytes.sql +++ b/supabase/migrations/38_change_to_gigabytes.sql @@ -1,5 +1,7 @@ begin; +alter table tenants alter column data_tiers set default '{50}'; + -- Not used, let's not confuse ourselves with `internal.billing_report_202308` which is used drop function billing_report;