2017-04-20 02:16:06 -06:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateWebsubServerSubscription do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-06-30 19:08:07 -06:00
|
|
|
create_if_not_exists table(:websub_server_subscriptions) do
|
2017-04-20 02:16:06 -06:00
|
|
|
add :topic, :string
|
|
|
|
add :callback, :string
|
|
|
|
add :secret, :string
|
|
|
|
add :valid_until, :naive_datetime
|
|
|
|
add :state, :string
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|