analytics/priv/repo/migrations/20190301122344_add_country_code_to_pageviews.exs

10 lines
194 B
Elixir
Raw Normal View History

2019-09-02 14:29:19 +03:00
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