Is there any way of overriding a model\'s id value on create? Something like:
Post.create(:id => 10, :title => \'Test\')
would be ide
You could also use something like this:
Post.create({:id => 10, :title => 'Test'}, :without_protection => true)
Although as stated in the docs, this will bypass mass-assignment security.