diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-10-27 13:47:05 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-10-27 13:47:05 -0500 |
commit | 50401161a55fc46cbfcc4e9bcb7834f5482c05a8 (patch) | |
tree | aae2e075290e6260779829740c07b57ae82082dc | |
parent | e80aed27b3109537b2c0dee35c3764028083e294 (diff) |
whee db schema update
-rw-r--r-- | db/schema.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 15bfe9943..ee4778cbf 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: 2019_10_10_005320) do +ActiveRecord::Schema.define(version: 2019_10_27_182731) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -155,6 +155,9 @@ ActiveRecord::Schema.define(version: 2019_10_10_005320) do t.boolean "kobold", default: false, null: false t.boolean "froze" t.boolean "known", default: false, null: false + t.boolean "force_private", default: false, null: false + t.boolean "unboostable", default: false, null: false + t.boolean "block_anon", 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), lower((domain)::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" |