1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-18 07:48:19 +00:00
akkoma/priv/repo/migrations/20190710115833_add_following_address_to_user.exs
2019-07-10 17:42:18 +03:00

10 lines
199 B
Elixir

defmodule Pleroma.Repo.Migrations.AddFollowingAddressToUser do
use Ecto.Migration
def change do
alter table(:users) do
add(:following_address, :string, unique: true)
end
end
end