these strings do not need to be frozen

This commit is contained in:
Aaron Patterson
2010-07-12 16:43:20 -07:00
parent 8fb838ed16
commit cee2ff2768

View File

@@ -381,9 +381,9 @@ module ActiveRecord
def default_primary_key_type
if supports_autoincrement?
'INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL'.freeze
'INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL'
else
'INTEGER PRIMARY KEY NOT NULL'.freeze
'INTEGER PRIMARY KEY NOT NULL'
end
end