1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-09-11 14:17:21 +01:00

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

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