mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 19:15:03 +03:00
10 lines
162 B
Elixir
10 lines
162 B
Elixir
|
defmodule Plausible.Repo.Migrations.AddNameToUsers do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:users) do
|
||
|
add :name, :string
|
||
|
end
|
||
|
end
|
||
|
end
|