Generating migrations with couchrest_model

How you can go about generating migrations with couchrest_model

CouchRest_Model is a lovely way to handle CouchDB calls from without your rails app, it provides an Active Record like interface to your data.

In a project I am working on at the moment I am using both CouchRest_Model and Active Record at the same time, which isn’t a problem at all and they normally don’t stand on each others feet.

I say normally because one time when it can cause issue is whenever you are generating migrations using the command rails generate migration myMigration.

You may find that if you run this you will get the following error;

error couchrest_model [not found]

This is because CouchRest_Model assumes it is the default ORM, which is fine in the app, but not find for migration generation.

To get around this we can add a flag to our migration command;

rails generate migration myMigration --orm=active_record

This will allow the migration to generate as expected.


Recent posts View all

Ruby

Forcing a Rails database column to be not null

How you can force a table column to always have something in it with Rails

Writing Marketing

We've deleted an article's worth of unhelpful words

We've improved several pages across our site by removing words that add no value, and often detract from the article.