analytics/priv/repo/migrations/20190301122344_add_country_code_to_pageviews.exs
2019-09-02 12:29:19 +01:00

10 lines
194 B
Elixir

defmodule Plausible.Repo.Migrations.AddCountryCodeToPageviews do
use Ecto.Migration
def change do
alter table(:pageviews) do
add :country_code, :string, size: 2
end
end
end