analytics/priv/repo/migrations/20191015073507_proper_timestamp_for_pageviews.exs
2019-10-15 15:37:55 +08:00

12 lines
239 B
Elixir

defmodule Plausible.Repo.Migrations.ProperTimestampForPageviews do
use Ecto.Migration
def change do
alter table(:pageviews) do
remove :updated_at
end
rename table(:pageviews), :inserted_at, to: :timestamp
end
end