#43: resetting Rails schema_migrations table

Solved!
I just ran a failing migration, and in a fit of panic, deleted all the rows from my schema migrations table. That's a pretty dumb thing to do.

maybe there's a better way...

3
From the console...

   1  
   2  Dir.open('db/migrate').each do |fname|
   3    i = fname.split('_').first.to_i
   4    next if i == 0
   5    ActiveRecord::Base.connection.execute("INSERT INTO schema_migrations (version) VALUES(#{i})")
   6  end

Think you've got a better solution? Help 148c663fd665c53518538e093ce3c2ab_small kueda out by posting your solution