pleroma/priv/repo/migrations/20200707112859_instances_ad...

15 lines
380 B
Elixir
Raw Normal View History

2022-02-26 07:11:42 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2020-07-07 11:13:38 +02: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