Is there any way of overriding a model\'s id value on create? Something like:
Post.create(:id => 10, :title => \'Test\')
would be ide
Actually, it turns out that doing the following works:
p = Post.new(:id => 10, :title => 'Test') p.save(false)