@@ -55,10 +55,8 @@ INSERT INTO public.cloud_instances (cloud_provider, instance_group, instance_nam
5555 (' hetzner' , ' Small Size' , ' CPX31' , 4 , 8 , 0 .025 , 15 .59 , ' $' , ' 2024-12-10' , true),
5656 (' hetzner' , ' Medium Size' , ' CPX41' , 8 , 16 , 0 .0464 , 28 .09 , ' $' , ' 2024-12-10' , true),
5757 (' hetzner' , ' Medium Size' , ' CPX51' , 16 , 32 , 0 .0979 , 61 .09 , ' $' , ' 2024-12-10' , true);
58-
5958
6059-- Update all existing Hetzner instances to use USD instead of EUR for easy comparison to other IaaS Providers.
61- -- cloud_instances
6260-- Update prices and other relevant fields for Hetzner cloud instances indludes an IPv4 address
6361UPDATE public .cloud_instances SET price_hourly = 0 .0082 , price_monthly = 5 .09 , currency = ' $' , updated_at = ' 2024-12-10' , shared_cpu = true WHERE cloud_provider = ' hetzner' AND instance_name = ' CPX11' ;
6462UPDATE public .cloud_instances SET price_hourly = 0 .0138 , price_monthly = 8 .59 , currency = ' $' , updated_at = ' 2024-12-10' , shared_cpu = true WHERE cloud_provider = ' hetzner' AND instance_name = ' CPX21' ;
@@ -74,5 +72,4 @@ UPDATE public.cloud_instances SET price_hourly = 0.5138, price_monthly = 320.59,
7472UPDATE public .cloud_volumes SET price_monthly = 0 .05 , currency = ' $' , updated_at = ' 2024-12-10' WHERE cloud_provider = ' hetzner' ;
7573
7674-- +goose Down
77- DELETE FROM public .postgres_versions
78- WHERE major_version = 17 ;
75+ DELETE FROM public .postgres_versions WHERE major_version = 17 ;
0 commit comments