Merge pull request 'Drop XSS auditor' (#292) from r3g_5z/akkoma:drop-xss-auditor...
[akkoma] / priv / repo / migrations / 20200707112859_instances_add_favicon.exs
1 defmodule Pleroma.Repo.Migrations.InstancesAddFavicon do
2 use Ecto.Migration
3
4 def change do
5 alter table(:instances) do
6 add(:favicon, :string)
7 add(:favicon_updated_at, :naive_datetime)
8 end
9 end
10 end