使用rake任务将数据从csv文件导入到rails中的模型

时间:2015-07-22 20:40:39

标签: ruby-on-rails rake rake-task

我想将数据从csv文件导入到rails中的数据库中。我要导入数据的模型是:

create_table "clubs", force: true do |t|
   t.text     "club"
   t.text     "location"
   t.text     "address"
   t.text     "description"
   t.string   "email"
   t.string   "phone"
   t.datetime "created_at"
   t.datetime "updated_at"
   t.string   "photo_file_name"
   t.string   "photo_content_type"
   t.integer  "photo_file_size"
   t.datetime "photo_updated_at"
   t.string   "city"
   t.float    "latitude"
   t.float    "longitude"
end

在csv文件中,我有“俱乐部”,“位置”,“地址”,“电子邮件”,“电话”和“城市”的数据,但对于某些行,有可能是上述任何一种数据提到的属性可能会丢失。

那么,任何人都可以帮助我如何使用rake任务从数据库中的csv文件迁移数据?

提前致谢。

0 个答案:

没有答案