Change webpush endpoint to unlimited varchar

Fixes #552
This commit is contained in:
href 2019-01-26 17:17:37 +01:00
parent 6383fa3a5d
commit 4a13bb75bd
No known key found for this signature in database
GPG Key ID: EE8296C1A152C325
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