I am trying to collapse all of my migrations into one (just to try it out), using this blog advice: I personally prefer to collapse all the existing migrations into a single migration at the end of every release, by just copying the schema.rb into "001_collapsed_schema.rb". This way, you won't have these older migrations which need to be "maintained".
So I delete all my migrations, create a new migration file 001_collapsed_schema.rb and copy schema.rb into it. Then I try to run
rake db:migrate
and get this NameError: uninitialized constant CollapsedSchema error. What did I do wrong?