diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-06-28 06:19:52 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:41:03 -0500 |
commit | 25689e5b3992ac1759f7a7f09fe54f7caf1176ae (patch) | |
tree | 5d207657bad4ecf26ca25dfe29956e1e0ebb4543 /db/migrate | |
parent | 0f26894b065fcb40606bee1faaacd4cdaf8b3cd5 (diff) |
[Privacy] Let admins exclude private domains from the public allowlist
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20200628105849_add_hidden_to_domain_allows.rb | 7 |
1 files changed, 7 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 |