I am using sqlite for both (for now) my development and production system on rails. I have a development.sqlite3 file that I want to copy over to production.sqlite3 to run some testing in a production environment.
I've tried to copy the development db over to the production just by doing mv development.sqlite3 production.sqlite3
and that doesn't seem to be working.
Any ideas on how best to go about doing this?