analytics/priv/repo/migrations/20200204093801_rename_site_id_to_domain.exs

9 lines
208 B
Elixir
Raw Normal View History

defmodule Plausible.Repo.Migrations.RenameSiteIdToDomain do
use Ecto.Migration
def change do
rename table(:events), :site_id, to: :domain
rename table(:sessions), :site_id, to: :domain
end
end