1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 15:16:33 +09:00
YuruToot/db/migrate/20190807135426_add_comments_to_domain_blocks.rb
2023-02-18 06:56:20 +09:00

7 lines
195 B
Ruby

class AddCommentsToDomainBlocks < ActiveRecord::Migration[5.2]
def change
add_column :domain_blocks, :private_comment, :text
add_column :domain_blocks, :public_comment, :text
end
end