diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-07-31 01:25:10 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-07-31 01:25:10 -0500 |
commit | 80a81fe223415525811c0c3ef62b8853624e9a6a (patch) | |
tree | a5438b0d28dd9a872ad0223b2a130dee59ab92b7 /db/migrate | |
parent | 964054b6dbabf119c9dea9cfa0b71011ace8df07 (diff) |
ability to add domain moderation notes, edit existing domain policies in-place, and process asynchronously
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20190730213656_add_reason_to_domain_blocks.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20190730213656_add_reason_to_domain_blocks.rb b/db/migrate/20190730213656_add_reason_to_domain_blocks.rb new file mode 100644 index 000000000..2e768b173 --- /dev/null +++ b/db/migrate/20190730213656_add_reason_to_domain_blocks.rb @@ -0,0 +1,5 @@ +class AddReasonToDomainBlocks < ActiveRecord::Migration[5.2] + def change + add_column :domain_blocks, :reason, :text + end +end |