2017-04-26 16:33:10 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateWebsubClientSubscription do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-07-01 01:08:07 +00:00
|
|
|
create_if_not_exists table(:websub_client_subscriptions) do
|
2017-04-26 16:33:10 +00:00
|
|
|
add :topic, :string
|
|
|
|
add :secret, :string
|
2019-03-20 13:16:29 +00:00
|
|
|
add :valid_until, :naive_datetime_usec
|
2017-04-26 16:33:10 +00:00
|
|
|
add :state, :string
|
|
|
|
add :subscribers, :map
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|