mirror of
https://github.com/plausible/analytics.git
synced 2024-11-28 04:30:42 +03:00
11 lines
209 B
Elixir
11 lines
209 B
Elixir
defmodule Plausible.Repo.Migrations.AddUidToPageviews do
|
|
use Ecto.Migration
|
|
use Plausible.Repo
|
|
|
|
def change do
|
|
alter table(:pageviews) do
|
|
add :user_id, :binary_id, null: false
|
|
end
|
|
end
|
|
end
|