class CreateMedia < ActiveRecord::Migration[6.0]
  def change
    create_table :media do |t|
      t.references :attachable, polymorphic: true
      t.attachment :media
      t.timestamps
    end
  end
end
