forked from AkkomaGang/akkoma
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:
commit
c410fe960c
1 changed files with 9 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue