I'm fairly new to git and I've begun using multiple branches to build different features simultaneously using commands like git branch, git checkout, etc.
Here's a list of steps I've taken:
git checkout feature1
make some changes that include migrations
rake db:migrate
rake db:commit to feature1 with schema.rb
git checkout feature2
# at this point my schema appears to revert to pre-feature1
make some changes that involve a new migration
rake db:migrate
# schema now shows changes from BOTH feature1 and feature2.
The act of running rake db:migrate in feature2 refreshes the schema, which I imagine reflects my local database that underpins both feature1 and feature2. Do you know what I can do to keep these migrations separate so each feature can have its own schema, or is there another way to handle branched migrations?