This has not been tested and I am not sure what db you are using.
create_table(:order, :id => false) do |t|
t.integer :id, :options => 'PRIMARY KEY', :default => 1000
or if you already have the table try this migration
def change
execute "ALTER TABLE orders AUTO_INCREMENT = 1000"
end