mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 08:59:50 +00:00
10 lines
221 B
Elixir
10 lines
221 B
Elixir
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
|