1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20190807135426_add_comments_to_domain_blocks.rb

13 lines
292 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddCommentsToDomainBlocks < ActiveRecord::Migration[5.2]
def change
safety_assured do
change_table(:domain_blocks, bulk: true) do |t|
t.column :private_comment, :text
t.column :public_comment, :text
end
end
end
end