about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-06-28 06:19:52 -0500
committerFire Demon <firedemon@creature.cafe>2020-08-30 05:41:03 -0500
commit25689e5b3992ac1759f7a7f09fe54f7caf1176ae (patch)
tree5d207657bad4ecf26ca25dfe29956e1e0ebb4543 /db
parent0f26894b065fcb40606bee1faaacd4cdaf8b3cd5 (diff)
[Privacy] Let admins exclude private domains from the public allowlist
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20200628105849_add_hidden_to_domain_allows.rb7
-rw-r--r--db/schema.rb1
2 files changed, 8 insertions, 0 deletions
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