Add hidden parameter to domain blocks

This commit is contained in:
KMY 2023-04-28 08:52:50 +09:00
parent 9e055d1439
commit 565e60d0db
9 changed files with 34 additions and 7 deletions

View file

@ -0,0 +1,6 @@
class AddHiddenToDomainBlocks < ActiveRecord::Migration[6.1]
def change
add_column :domain_blocks, :hidden, :boolean, null: false, default: false
add_column :domain_blocks, :hidden_anonymous, :boolean, null: false, default: false
end
end