X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20170427054757_add_user_and_hub.exs;h=f33a8572fd3f4ac41fb20f8703a91746a057aac4;hb=b2eb1124d115beda0907121c3c6f10783b34f352;hp=4f9a520bd0ba3c330e6956820dbbd62ea6ade2f7;hpb=b403ea4d2b69cef4434ad68babdfb402d8227847;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