From 65a9abb315f18ac777f3d0e09b3f7399830ad243 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Mon, 23 Nov 2020 23:10:05 -0600 Subject: Add user options to disable recipient verification, allow anonymous public access; rework private mode --- db/schema.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index 273e942f5..346177241 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2020_11_19_035441) do +ActiveRecord::Schema.define(version: 2020_11_24_005733) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -209,10 +209,11 @@ ActiveRecord::Schema.define(version: 2020_11_19_035441) do t.boolean "show_replies", default: true, null: false t.boolean "show_unlisted", default: true, null: false t.boolean "private", default: false, null: false - t.boolean "require_auth", default: false, null: false t.datetime "last_synced_at" t.datetime "sensitized_at" t.integer "suspension_origin" + t.boolean "no_verify_auth", default: false, null: false + t.boolean "allow_anonymous", default: false, 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 ["moved_to_account_id"], name: "index_accounts_on_moved_to_account_id" -- cgit