There is a model class method like table_exists? That you can use to check ifthe table exists and then only run the code if it does
On 06/02/2009, at 6:51, Harold <[email protected]> wrote: > > Excuse me, the code I need to wrap around the check is on > ApplicationController. Still, any ideas? > > On Feb 5, 3:33 pm, Harold <[email protected]> wrote: >> Hi group, >> >> I have a line of code in environment.rb that cannot be run during a >> rake db:migrate, as it depends on some tables being present. >> >> I need to find a way to enclose this line in a check for >> db:migrate. I >> know how to check if we're in a rake task with: >> >> unless defined?(Rake) >> # do stuff, but skip when run from rake tasks >> end >> >> How can I take this further to make check if I'm running the rake >> db:migrate task? >> >> Thanks, >> >> -H > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

