Powinno działać po wyjęciu z pudełka z PostgreSQL, sprawdzone z pg gem i 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 marginesie, manipulowanie schema_migrations
bezpośrednio wygląda dziwnie.