Nó sẽ hoạt động hiệu quả với PostgreSQL, được kiểm tra bằng pg gem và rails 3.2:
class Multitest < ActiveRecord::Migration
def up
execute <<-SQL
create table x(id serial primary key);
create table y(id serial primary key, i integer);
SQL
end
def down
end
end
Lưu ý nhỏ là thao tác schema_migrations
trực tiếp trông lạ.