From 7bbcf793bc75b44f2b20de77b7774759af60cd90 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Thu, 15 Aug 2019 22:40:20 -0500 Subject: custom filters now have an option to add or override content warnings; filter caching has been fixed --- db/migrate/20190815232125_add_custom_cws_to_custom_filters.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 db/migrate/20190815232125_add_custom_cws_to_custom_filters.rb (limited to 'db/migrate') diff --git a/db/migrate/20190815232125_add_custom_cws_to_custom_filters.rb b/db/migrate/20190815232125_add_custom_cws_to_custom_filters.rb new file mode 100644 index 000000000..ec201e7b6 --- /dev/null +++ b/db/migrate/20190815232125_add_custom_cws_to_custom_filters.rb @@ -0,0 +1,8 @@ +class AddCustomCwsToCustomFilters < ActiveRecord::Migration[5.2] + def change + safety_assured { + add_column :custom_filters, :custom_cw, :text + add_column :custom_filters, :override_cw, :boolean, null: false, default: false + } + end +end -- cgit