Slide 43
Slide 43 text
class
MultiDbTest
<
ActiveRecord::Migration
db_magic
:connections
=>
[:second_db,
:default]
!
def
self.up
create_table
:test_table,
:force
=>
true
do
|t|
t.string
:test_string
t.timestamps
end
end
!
def
self.down
drop_table
:test_table
end
end