mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
5 lines
No EOL
333 B
SQL
5 lines
No EOL
333 B
SQL
-- Update Hobby with 3d to 7d - personal orgs were created with the default value of 3d
|
|
UPDATE public.organizations SET limit_retention_days = 7 WHERE plan_name = 'HOBBY' AND limit_retention_days = 3;
|
|
|
|
-- Update limit_retention_days default value to 7
|
|
ALTER table public.organizations ALTER COLUMN limit_retention_days SET DEFAULT 7; |