Whats the best way to get a list of data from a local dev database in a production database?
I thought there was a rake task to seed data in, but is there another way?
Since Only this data should insert 1time and never updates after that, how would this
best fix in a cap deployment? Or should I just manually run the import command on the server production?
Sounds like you just want a restore, so I would just:
You should do a database backup using your dbms tools, copy the file locally, and restore it.