forked from AkkomaGang/akkoma
9 lines
190 B
Elixir
9 lines
190 B
Elixir
defmodule Pleroma.Repo.Migrations.AddRegistrationReasonToUsers do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add(:registration_reason, :string)
|
|
end
|
|
end
|
|
end
|