2017-04-26 12:33:10 -04:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateWebsubClientSubscription do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-06-30 21:08:07 -04:00
|
|
|
create_if_not_exists table(:websub_client_subscriptions) do
|
2019-10-08 08:16:39 -04:00
|
|
|
add(:topic, :string)
|
|
|
|
add(:secret, :string)
|
|
|
|
add(:valid_until, :naive_datetime_usec)
|
|
|
|
add(:state, :string)
|
|
|
|
add(:subscribers, :map)
|
2017-04-26 12:33:10 -04:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|