mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02:00
Store a remote actor's featuredCollections URI (#38166)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AddCollectionsURLToAccounts < ActiveRecord::Migration[8.1]
|
||||
def change
|
||||
add_column :accounts, :collections_url, :string
|
||||
end
|
||||
end
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user