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
1 changed files with 9 additions and 0 deletions

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