I have multiple .csv files which I need to import to a sqlite database using active record as an ORM, but I need each of these .csv imported in a different table, while most of them have the same structure.
What is the best way to do this, and is there any efficient way to automate this process in Rails?
I would appreciate you opinions.