mirror of
https://github.com/plausible/analytics.git
synced 2024-11-30 00:58:54 +03:00
10 lines
181 B
Elixir
10 lines
181 B
Elixir
defmodule Plausible.Repo.Migrations.AddMonetaryValueToGoals do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:goals) do
|
|
add :currency, :"varchar(3)"
|
|
end
|
|
end
|
|
end
|