Ini harus bekerja di luar kotak dengan PostgreSQL, diperiksa dengan pg gem dan 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
Sebagai tambahan, memanipulasi schema_migrations
langsung terlihat aneh.