1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-08 00:36:16 +01:00
pleroma/priv/repo/migrations/20190126160540_change_push_subscriptions_varchar.exs
2019-01-26 17:18:34 +01:00

10 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