about summary refs log tree commit diff
path: root/db/migrate/20200724035808_add_inline_to_media_attachments.rb
blob: 171eca4b5521b74e7841e857fa78db32b4f8152a (plain) (blame)
1
2
3
4
5
6
7
class AddInlineToMediaAttachments < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      add_column :media_attachments, :inline, :boolean, default: false, null: false
    end
  end
end