Merge commit '15fd712464' into kb_migration

This commit is contained in:
KMY 2023-05-01 15:05:34 +09:00
commit 3a1a6ba39e
289 changed files with 1339 additions and 1337 deletions

View file

@ -1,7 +1,19 @@
# frozen_string_literal: true
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
change_table :domain_blocks, bulk: true do |t|
t.boolean :reject_hashtag, null: false, default: false
t.boolean :reject_straight_follow, null: false, default: false
t.boolean :reject_new_follow, null: false, default: false
end
end
def down
change_table :domain_blocks, bulk: true do |t|
t.remove :reject_hashtag
t.remove :reject_straight_follow
t.remove :reject_new_follow
end
end
end