1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2025-01-13 18:55:25 +00:00
pleroma/priv/repo/migrations/20200707112859_instances_add_favicon.exs

11 lines
221 B
Elixir
Raw Normal View History

2020-07-07 09:13:38 +00:00
defmodule Pleroma.Repo.Migrations.InstancesAddFavicon do
use Ecto.Migration
def change do
alter table(:instances) do
add(:favicon, :string)
add(:favicon_updated_at, :naive_datetime)
end
end
end