Use instances table instead of Cachex

This commit is contained in:
Haelwenn (lanodan) Monnier 2020-07-07 11:13:38 +02:00
commit 013e2c5057
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE
5 changed files with 65 additions and 32 deletions

View file

@ -0,0 +1,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