Merge branch 'features/mastoapi/2.6.0-conversations' of git.pleroma.social:pleroma...
[akkoma] / priv / repo / migrations / 20170427054757_add_user_and_hub.exs
1 defmodule Pleroma.Repo.Migrations.AddUserAndHub do
2 use Ecto.Migration
3
4 def change do
5 alter table(:websub_client_subscriptions) do
6 add :hub, :string
7 add :user_id, references(:users)
8 end
9 end
10 end