1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2025-03-06 19:52:01 +00:00
pleroma/priv/repo/migrations/20190126160540_change_push_subscriptions_varchar.exs

10 lines
198 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.ChangePushSubscriptionsVarchar do
use Ecto.Migration
def change do
alter table(:push_subscriptions) do
modify(:endpoint, :varchar)
end
end
end