Add city name to imported_locations table (#2633)

See also #2608
This commit is contained in:
Vini Brasil 2023-02-02 14:25:07 -03:00 committed by GitHub
parent f678cfab25
commit a730763838
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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