add data_migration for rename field for attribute_field. not yet tested

This commit is contained in:
Matthew K. Fu JuYuan 2012-09-13 18:50:46 +08:00 committed by Christophe Vilayphiou
parent 5fb94f644d
commit df6c7afd68
1 changed files with 4 additions and 0 deletions

View File

@ -96,4 +96,8 @@ namespace :data_migration do
app.save!
end
task :rename_attribute_field => :environment do
AttributeField.collection.update({},{'$rename' => {'title' => 'locale_title'}}, multi: true, safe: true)
end
end