defmodule Pleroma.Web.Websub.WebsubClientSubscription do
use Ecto.Schema
+ alias Pleroma.User
schema "websub_client_subscriptions" do
field :topic, :string
field :valid_until, :naive_datetime
field :state, :string
field :subscribers, {:array, :string}, default: []
+ field :hub, :string
+ belongs_to :user, User
timestamps()
end
--- /dev/null
+defmodule Pleroma.Repo.Migrations.AddUserAndHub do
+ use Ecto.Migration
+
+ def change do
+ alter table(:websub_client_subscriptions) do
+ add :hub, :string
+ add :user_id, references(:users)
+ end
+ end
+end