In my migrations I am importing data from a CSV file.
So i first create the table :
create_table :customers do |t|
...
end
and then import data from a CSV into it. The CSV data allready contains
values for the id field. My problem is that activerecord won't let me
override the id field :
Customer.create(:id=>1000, :name=>.........)
It uses its own ID.
Does anyone know how I can solve this the correct way?