Need help with rake db:migrate error

Trying to do a rake db:migrate command and am getting this error. Your help appreciated.

Macintosh:depot pdenlinger$ rake --trace (in /Users/pdenlinger/Sites/depot) ** Invoke default (first_time) ** Invoke test (first_time) ** Execute test ** Invoke test:units (first_time) ** Invoke db:test:prepare (first_time) ** Invoke db:abort_if_pending_migrations (first_time) ** Invoke environment (first_time) ** Execute environment ** Execute db:abort_if_pending_migrations You have 1 pending migrations:   20091204090259 AddTestData Run "rake db:migrate" to update your database then try again. Macintosh:depot pdenlinger$ rake db:migrate (in /Users/pdenlinger/Sites/depot) rake aborted! An error has occurred, this and all later migrations canceled:

undefined local variable or method `c' for main:Object

Thanks, Paul

This is the code from the Agile Web Development 3rd Edition, which I pasted into the original db/migrate file, and tried to use rake to migrate to the SQLite DB:

c#--- # Excerpted from "Agile Web Development with Rails, 3rd Ed.", # published by The Pragmatic Bookshelf. # Copyrights apply to this code. It may not be used to create training material, # courses, books, articles, and the like. Contact us if you are in doubt. # We make no guarantees that this code is fit for any purpose. # Visit http://www.pragmaticprogrammer.com/titles/rails3 for more book information.

You got an extra 'c' at the beginning of the file. :wink:

Thank you! That did the trick.

Paul