1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-25 23:19:17 +00:00
akkoma/priv/repo/migrations/20190710115833_add_following_address_to_user.exs

10 lines
199 B
Elixir
Raw Normal View History

2019-07-10 16:01:32 +03:00
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