From 25689e5b3992ac1759f7a7f09fe54f7caf1176ae Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sun, 28 Jun 2020 06:19:52 -0500 Subject: [Privacy] Let admins exclude private domains from the public allowlist --- db/migrate/20200628105849_add_hidden_to_domain_allows.rb | 7 +++++++ db/schema.rb | 1 + 2 files changed, 8 insertions(+) create mode 100644 db/migrate/20200628105849_add_hidden_to_domain_allows.rb (limited to 'db') diff --git a/db/migrate/20200628105849_add_hidden_to_domain_allows.rb b/db/migrate/20200628105849_add_hidden_to_domain_allows.rb new file mode 100644 index 000000000..8fd4b79cc --- /dev/null +++ b/db/migrate/20200628105849_add_hidden_to_domain_allows.rb @@ -0,0 +1,7 @@ +class AddHiddenToDomainAllows < ActiveRecord::Migration[5.2] + def change + safety_assured do + add_column :domain_allows, :hidden, :boolean, default: false, allow_null: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 37cd34136..d2767752a 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -339,6 +339,7 @@ ActiveRecord::Schema.define(version: 2020_06_28_133322) do t.string "domain", default: "", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.boolean "hidden", default: false t.index ["domain"], name: "index_domain_allows_on_domain", unique: true end -- cgit