1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-28 04:55:24 +01:00

Merge branch 'webpush-endpoint-size' into 'develop'

Change webpush endpoint to unlimited varchar

Closes #552

See merge request pleroma/pleroma!716
This commit is contained in:
kaniini 2019-01-26 17:27:14 +00:00
commit c410fe960c

View File

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.ChangePushSubscriptionsVarchar do
use Ecto.Migration
def change do
alter table(:push_subscriptions) do
modify(:endpoint, :varchar)
end
end
end