Kshitiz Kr
Kshitiz Kr

Reputation: 13

How to copy development db to test db in mongodb rails

I am using Mogodb in my rails app as my database how take the snap of my development db and stick to my test db in local

Upvotes: 1

Views: 153

Answers (1)

Safi Nettah
Safi Nettah

Reputation: 1170

In mongo console db.copyDatabase('bd_dev', 'bd_test')

Upvotes: 1

Related Questions