about summary refs log tree commit diff
path: root/db/migrate/20190807135426_add_comments_to_domain_blocks.rb
blob: b660a71adb92d33b7a28342fd77b9d1a9ae1659d (plain) (blame)
1
2
3
4
5
6
7
class AddCommentsToDomainBlocks < ActiveRecord::Migration[5.2]
  def change
    add_column :domain_blocks, :private_comment, :text
    add_column :domain_blocks, :public_comment, :text
  end
end