1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2026-02-15 17:16:57 +00:00

Merge branch 'instance-nodeinfo-metadata' into 'develop'

instances: Store some metadata based on NodeInfo

See merge request pleroma/pleroma!3853
This commit is contained in:
Haelwenn 2023-06-27 18:58:04 +00:00
commit 043a00991d
7 changed files with 177 additions and 1 deletions

View file

@ -0,0 +1,14 @@
# Pleroma: A lightweight social networking server
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Repo.Migrations.InstancesAddMetadata do
use Ecto.Migration
def change do
alter table(:instances) do
add(:metadata, :map)
add(:metadata_updated_at, :utc_datetime)
end
end
end