我创建了一个新的迁移,它看起来像这样:
class AddCommentsToUsers < ActiveRecord::Migration
def change
add_column :users, :comments, :text
end
end
现在有了代码气候,我被警告一个问题:
Missing frozen string literal comment.
我试图像这样修复它:
# frozen_string_literal: true
class AddCommentsToUsers < ActiveRecord::Migration
def change
add_column :users, :comments, :text
end
end
但我仍然有同样的问题。我该如何解决?谢谢。