PostgreSQLでそのまま動作し、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
ちなみに、schema_migrations
を操作する 直接奇妙に見えます。