4f9a520bd0ba3c330e6956820dbbd62ea6ade2f7
[akkoma] / 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