From a730763838c7499fbae51c7e1087a835aa936805 Mon Sep 17 00:00:00 2001 From: Vini Brasil Date: Thu, 2 Feb 2023 14:25:07 -0300 Subject: [PATCH] Add city name to imported_locations table (#2633) See also #2608 --- ...0230124140348_add_city_name_to_imported_locations.exs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 priv/clickhouse_repo/migrations/20230124140348_add_city_name_to_imported_locations.exs diff --git a/priv/clickhouse_repo/migrations/20230124140348_add_city_name_to_imported_locations.exs b/priv/clickhouse_repo/migrations/20230124140348_add_city_name_to_imported_locations.exs new file mode 100644 index 000000000..58a649a7e --- /dev/null +++ b/priv/clickhouse_repo/migrations/20230124140348_add_city_name_to_imported_locations.exs @@ -0,0 +1,9 @@ +defmodule Plausible.ClickhouseRepo.Migrations.AddCityNameToImportedLocations do + use Ecto.Migration + + def change do + alter table(:imported_locations) do + add :city_name, :string + end + end +end