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