A rails app I am developing currently has about 35 migrations up to this point. Since the application started as an experiment, there is a fair amount of meaningless churn in the migrations as I went back and forth between different ideas.
Are there any drawbacks to collapsing migrations 1-35 into one migration? I was planning to do this by having the first migration load the schema as it is now and deleting all the previous migrations.
I am currently the only person working on this project, if that makes a difference.