I have a CSV file I'm trying to import into Sqlite3 using the .import command. The db table has updated_at and a created_at columns, but my CSV file does not, so when I run the import I get an error message: "expected 18 columns, only found 16"
What is the easiest way to import this file?
I tried adding created_at, updated_at columns to the CSV file but got an error.
Several forums suggest using FasterCSV, but I'm unclear on how to use the gem to address this issue specifically.