Store a remote actor's featuredCollections URI (#38166)

This commit is contained in:
David Roetzel
2026-03-12 10:11:32 +01:00
committed by GitHub
parent 51894ac247
commit 84d8020165
5 changed files with 39 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddCollectionsURLToAccounts < ActiveRecord::Migration[8.1]
def change
add_column :accounts, :collections_url, :string
end
end

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.1].define(version: 2026_03_10_095021) do
ActiveRecord::Schema[8.1].define(version: 2026_03_11_152331) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_catalog.plpgsql"
@@ -162,6 +162,7 @@ ActiveRecord::Schema[8.1].define(version: 2026_03_10_095021) do
t.string "avatar_remote_url"
t.integer "avatar_storage_schema_version"
t.datetime "avatar_updated_at", precision: nil
t.string "collections_url"
t.datetime "created_at", precision: nil, null: false
t.boolean "discoverable"
t.string "display_name", default: "", null: false