total rebase
[anni] / priv / repo / migrations / 20230306112859_instances_add_metadata.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.InstancesAddMetadata do
6   use Ecto.Migration
7
8   def change do
9     alter table(:instances) do
10       add(:metadata, :map)
11       add(:metadata_updated_at, :utc_datetime)
12     end
13   end
14 end