यह पोस्टग्रेएसक्यूएल के साथ बॉक्स से बाहर काम करना चाहिए, पीजी मणि और रेल 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
. में हेरफेर करना सीधे अजीब लगता है।