Is there any way of overriding a model\'s id value on create? Something like:
Post.create(:id => 10, :title => \'Test\')
would be ide
Try
a_post = Post.new do |p| p.id = 10 p.title = 'Test' p.save end
that should give you what you're looking for.