Add option to modify HTTP pool size
[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