X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20170427054757_add_user_and_hub.exs;h=f33a8572fd3f4ac41fb20f8703a91746a057aac4;hb=c95859e45b18dec1d00f721ef3c5b4bb1406ea37;hp=4f9a520bd0ba3c330e6956820dbbd62ea6ade2f7;hpb=c48c381e909240dcece9f961e4728fa712d089cc;p=akkoma diff --git a/priv/repo/migrations/20170427054757_add_user_and_hub.exs b/priv/repo/migrations/20170427054757_add_user_and_hub.exs index 4f9a520bd..f33a8572f 100644 --- a/priv/repo/migrations/20170427054757_add_user_and_hub.exs +++ b/priv/repo/migrations/20170427054757_add_user_and_hub.exs @@ -3,8 +3,8 @@ defmodule Pleroma.Repo.Migrations.AddUserAndHub do def change do alter table(:websub_client_subscriptions) do - add :hub, :string - add :user_id, references(:users) + add(:hub, :string) + add(:user_id, references(:users)) end end end