|
|
|
|
|
by loktarogar
2067 days ago
|
|
Rails _did_ support multiple databases up until then, it just wasn't _as easy_ as everything else in rails. You just defined another database in database.yml (say "second_database") and then ran something like class Foo < ActiveRecord::Base
establish_connection :second_database
end
Still pretty straight forward and simple - just opaque.A lot was available in the Rails ecosystem or using Rails code without being explicitly supported by Rails itself. Much of the last few years has been including support for stuff like this that was already being used. To me, that's what a mature framework does. |
|