Files
fizzy/db/migrate/20241009182303_make_comment_bodies_not_null.rb
T
2024-10-11 20:14:09 -05:00

6 lines
132 B
Ruby

class MakeCommentBodiesNotNull < ActiveRecord::Migration[8.0]
def change
change_column_null :comments, :body, false
end
end