Add: #40 拡張ドメインブロックに「トレンドに掲載しない」を追加 (#492)

This commit is contained in:
KMY(雪あすか) 2024-01-22 09:06:05 +09:00 committed by GitHub
parent 96da1fcb00
commit 8793bc286e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 71 additions and 10 deletions

View file

@ -0,0 +1,9 @@
# frozen_string_literal: true
class AddBlockTrendsToDomainBlocks < ActiveRecord::Migration[7.1]
disable_ddl_transaction!
def change
add_column :domain_blocks, :block_trends, :boolean, default: false, null: false
end
end