Mělo by to fungovat hned po vybalení s PostgreSQL, zkontrolováno pomocí pg gem and 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
Na okraj, manipulace s schema_migrations
přímo vypadá divně.