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

18 lines
422 B
Elixir

defmodule Plausible.Repo.Migrations.AddWeeklyStats do
use Ecto.Migration
def change do
create table(:weekly_stats) do
add :week, :date, null: false
add :visitors, :integer, null: false
add :pageviews, :integer, null: false
add :site_id, references(:sites), null: false
timestamps()
end
create index(:weekly_stats, :site_id)
create index(:weekly_stats, :week)
end
end