Is it possible to create primary key without auto_increment flag in ActiveRecord?
auto_increment
I can\'t do
create table :blah, :id
Try this?
create_table(:table_name, :id => false) do |t| t.integer :id, :options => 'PRIMARY KEY' end