On 3 May 2011 13:44, Kelly Pfaff <[email protected]> wrote: > When i try to migrate my db, it gives the following error: > ** Invoke db:migrate (first_time) > ** Invoke environment (first_time) > ** Execute environment > rake aborted! > SQLite3::SQLException: no such table: users: SELECT * FROM "users"
Any chance that at line 6 of config/initializers/task_scheduler.rb you access Users before the users table has been created? If so, what happens if you comment that line while you migrate to create the table? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

