mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 00:49:46 +00:00
4a13bb75bd
Fixes #552
9 lines
198 B
Elixir
9 lines
198 B
Elixir
defmodule Pleroma.Repo.Migrations.ChangePushSubscriptionsVarchar do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:push_subscriptions) do
|
|
modify(:endpoint, :varchar)
|
|
end
|
|
end
|
|
end
|