Merge commit 'adede83c7c9a943cf9954fe865becf6a0c2d2280' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2026-03-12 18:48:32 +01:00
169 changed files with 625 additions and 262 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