diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-03-12 22:35:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-12 22:35:20 +0100 |
commit | bea0bb39d6c1762c97da484ffa8b5d73341e67e2 (patch) | |
tree | 0da0cf236231fde4b6103e4dc2428a99c1669e05 /db/migrate | |
parent | f556f79b7733834430b93109ac2c7f87529c8574 (diff) |
Add option to include resolved DNS records when blacklisting e-mail domains in admin UI (#13254)
* Add shortcuts to blacklist a user's e-mail domain in admin UI * Add option to blacklist resolved MX and IP records for e-mail domains
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20200312185443_add_parent_id_to_email_domain_blocks.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20200312185443_add_parent_id_to_email_domain_blocks.rb b/db/migrate/20200312185443_add_parent_id_to_email_domain_blocks.rb new file mode 100644 index 000000000..03915040c --- /dev/null +++ b/db/migrate/20200312185443_add_parent_id_to_email_domain_blocks.rb @@ -0,0 +1,5 @@ +class AddParentIdToEmailDomainBlocks < ActiveRecord::Migration[5.2] + def change + add_reference :email_domain_blocks, :parent, null: true, default: nil, foreign_key: { on_delete: :cascade, to_table: :email_domain_blocks }, index: false + end +end |