6 lines
132 B
Ruby
6 lines
132 B
Ruby
class MakeCommentBodiesNotNull < ActiveRecord::Migration[8.0]
|
|
def change
|
|
change_column_null :comments, :body, false
|
|
end
|
|
end
|