problems learning rake db:migrate

i added [code], force => true[/code] to the migration file which was created when i generated the model. can anyone tell me what is going wrong here?

undefined method 'force' for ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x51f3bf0

Should be :force => true -- note the colon, making it a symbol.

wow, thank you. I need to be more careful to look and see if it is something i can figure out before i come asking for help...

And like all of us, sometimes we become blind looking at the code for so long that we just need a second pair of eyes. :slight_smile:

Jason