mirror of
https://github.com/plausible/analytics.git
synced 2024-11-30 00:58:54 +03:00
8 lines
162 B
Elixir
8 lines
162 B
Elixir
defmodule Plausible.Repo.Migrations.RenamePageviewsToEvents do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
rename table("pageviews"), to: table("events")
|
|
end
|
|
end
|