Update schema.

staging
multiple creatures 2019-05-05 23:10:56 -05:00
parent ecf21d3fc6
commit 7ca4a2089c
1 changed files with 3 additions and 0 deletions

View File

@ -152,6 +152,7 @@ ActiveRecord::Schema.define(version: 2019_05_19_130537) do
t.boolean "hidden", default: false, null: false
t.jsonb "vars", default: {}, null: false
t.boolean "replies", default: true, null: false
t.boolean "unlisted", 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"
@ -692,6 +693,8 @@ ActiveRecord::Schema.define(version: 2019_05_19_130537) do
t.string "name", default: "", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.boolean "local", default: false, null: false
t.boolean "private", default: false, null: false
t.index "lower((name)::text) text_pattern_ops", name: "hashtag_search_index"
t.index ["name"], name: "index_tags_on_name", unique: true
end