我想将数据从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文件迁移数据?
提前致谢。