Merge commit '38fa0102c111f1c0cff5a42eba6882ffae4ca109' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2025-09-15 18:39:09 +02:00
63 changed files with 490 additions and 237 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddFollowingURLToAccounts < ActiveRecord::Migration[8.0]
def change
add_column :accounts, :following_url, :string, default: '', null: false
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.0].define(version: 2025_09_11_163952) do
ActiveRecord::Schema[8.0].define(version: 2025_09_12_082651) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_catalog.plpgsql"
@@ -198,6 +198,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_09_11_163952) do
t.datetime "requested_review_at", precision: nil
t.boolean "indexable", default: false, null: false
t.string "attribution_domains", default: [], array: true
t.string "following_url", default: "", null: false
t.index "(((setweight(to_tsvector('simple'::regconfig, (display_name)::text), 'A'::\"char\") || setweight(to_tsvector('simple'::regconfig, (username)::text), 'B'::\"char\")) || setweight(to_tsvector('simple'::regconfig, (COALESCE(domain, ''::character varying))::text), 'C'::\"char\")))", name: "search_index", using: :gin
t.index "lower((username)::text), COALESCE(lower((domain)::text), ''::text)", name: "index_accounts_on_username_and_domain_lower", unique: true
t.index ["domain", "id"], name: "index_accounts_on_domain_and_id"