我用列 id、task、description、created_at、updated_at 生成了一个 csv
create_table "tasks", :force => true do |t|
t.string "task"
t.string "description"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
我打开了 sqlite Konsole
rails db
.separator ','
.C:/User/jkl/Desktop/tasks.csv
我得到错误数据类型不匹配。我没有填写 created_at 和 updated_at,但这是从 rails 到 null => false。
你是怎么导入的?