Like in topic - is there any simple and elegant way to use separated
databases for specified models in one RoR app?
Here is the example:
I'd like to have separated DB for user data (model "Account" with
credentials, account info etc. for security purpose), different one
for Payment model (date, amount etc.) and third one for (i.e.) store
data.
Is there any way to do this with maintaining ActiveRecord relations
between models? (like account.has_many => payments :D)???
Like in topic - is there any simple and elegant way to use separated
databases for specified models in one RoR app?
Here is the example:
I'd like to have separated DB for user data (model "Account" with
credentials, account info etc. for security purpose), different one
for Payment model (date, amount etc.) and third one for (i.e.) store
data.
see the section titled "Connection to multiple databases in different
models" at Peak Obsession
Is there any way to do this with maintaining ActiveRecord relations
between models? (like account.has_many => payments :D)???
Probably (unless you try an do things like joins between two databases
not served by the same database server or stuff like that)
indeed there is some info about that, but... it's a bit unclear to me
how to use it... Do I specify establisch_connection command in model
file? Or in configuration script?