From 8312a6e51017498c417070cbcbf115da184b786d Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sat, 21 Dec 2019 13:22:18 -0600 Subject: add option to use phrase filters as an allow list --- db/migrate/20191221183232_add_invert_filters_to_user.rb | 5 +++++ db/schema.rb | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 db/migrate/20191221183232_add_invert_filters_to_user.rb (limited to 'db') diff --git a/db/migrate/20191221183232_add_invert_filters_to_user.rb b/db/migrate/20191221183232_add_invert_filters_to_user.rb new file mode 100644 index 000000000..d30b865f1 --- /dev/null +++ b/db/migrate/20191221183232_add_invert_filters_to_user.rb @@ -0,0 +1,5 @@ +class AddInvertFiltersToUser < ActiveRecord::Migration[5.2] + def change + add_column :users, :invert_filters, :boolean, null: false, default: false + end +end diff --git a/db/schema.rb b/db/schema.rb index f6f1ba209..631469a2a 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_12_21_164844) do +ActiveRecord::Schema.define(version: 2019_12_21_183232) do # These are extensions that must be enabled in order to support this database enable_extension "pg_trgm" @@ -810,6 +810,7 @@ ActiveRecord::Schema.define(version: 2019_12_21_164844) do t.jsonb "vars", default: {}, null: false t.boolean "hide_boosts" t.boolean "only_known" + t.boolean "invert_filters", default: false, null: false t.index ["account_id"], name: "index_users_on_account_id" t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true t.index ["created_by_application_id"], name: "index_users_on_created_by_application_id" -- cgit