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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.