1
0
Fork 0
forked from gitea/nas

Add hashtag,follow domain_blocks

This commit is contained in:
KMY 2023-04-28 08:36:59 +09:00
parent 12eac31786
commit 1ba30e6c75
14 changed files with 101 additions and 17 deletions

View file

@ -0,0 +1,7 @@
class AddSomeToDomainBlocks < ActiveRecord::Migration[6.1]
def change
add_column :domain_blocks, :reject_hashtag, :boolean, null: false, default: false
add_column :domain_blocks, :reject_straight_follow, :boolean, null: false, default: false
add_column :domain_blocks, :reject_new_follow, :boolean, null: false, default: false
end
end