Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am interested in using Shapado to create a Q&A site on Ruby on Rails. But it uses MongoDB as database; how can I change it to run on MySQL or PostgreSQL?

share|improve this question
1  
You'd almost certainly have to a near-rewrite on your hands, sorry. – mu is too short Oct 22 '12 at 20:35
Can you outline why you don't want to run on MongoDB? I'd think it would make more sense to use what already is working and tested. If you need to join the data to tables in a relational database, then write a copy system that periodically dumps MongoDB data into MySQL - much easier. – halfer Oct 22 '12 at 21:21

closed as not constructive by mu is too short, Thilo, girasquid, RivieraKid, NULL Oct 22 '12 at 22:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 1 down vote accepted

rewrite each and every model to inherit from ActiveRecord::Base. Rewrite the fields to a migration and recreate the data model that way.

This is not an easy deal.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.