1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-11-12 14:19:24 +01:00
pleroma/priv/repo/migrations/20190126160540_change_push_subscriptions_varchar.exs

16 lines
296 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.ChangePushSubscriptionsVarchar do
use Ecto.Migration
2019-07-01 03:08:07 +02:00
def up do
alter table(:push_subscriptions) do
modify(:endpoint, :varchar)
end
end
2019-07-01 03:08:07 +02:00
def down do
alter table(:push_subscriptions) do
modify(:endpoint, :string)
end
end
end