about summary refs log tree commit diff stats
path: root/db/migrate/20250112025207_widen_blog_body_column.rb
blob: f65aaea503931d26bed0aae49b0108c49ddd5fe6 (plain) (blame)
1
2
3
4
5
class WidenBlogBodyColumn < ActiveRecord::Migration[7.1]
  def change
    change_column :blogs, :body, :text, limit: 16.megabytes - 1
  end
end