mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 03:04:43 +03:00
10 lines
175 B
Elixir
10 lines
175 B
Elixir
defmodule Plausible.Repo.Migrations.AddStatsStartDate do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:sites) do
|
|
add :stats_start_date, :date
|
|
end
|
|
end
|
|
end
|