summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200707112859_instances_add_favicon.exs
blob: 5538749dca2192f0ca9d7c0492087dbe78fcd977 (plain)
1
2
3
4
5
6
7
8
9
10
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