mirror of
https://github.com/plausible/analytics.git
synced 2024-12-27 19:47:26 +03:00
18 lines
422 B
Elixir
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
|