heroku console is handy, if you can work through rails.

eg

heroku console
> a = Thing.find_by_foo("wrong_foo_value")
=> #<Foo id:999, foo:"wrong_foo_value".... >
>a.foo="right_foo_value"
=> #<Foo id:999 , foo:"right_foo_value".... >
>a.save
=> true

woo hoo.



On Apr 20, 12:46 am, Brian Armstrong <[email protected]> wrote:
> Thanks for the response GreenAsJade...
>
> That's unfortunate, since of course any changes made by users (or new
> accounts created) in between the pull/push get overwritten.  I guess
> I'll need to write some sort of admin interface.
>
> On Apr 14, 3:11 am, GreenAsJade <[email protected]> wrote:
>
> > No, I'm pretty sure not.
>
> > I think you'll need to use db:pull and db:push for this.
>
> > On Apr 14, 7:57 am, Brian Armstrong <[email protected]> wrote:
>
> > > Is there some sort of equivalent tophpMyAdminwhere we can tinker
> > > with the database in production?
>
> > > For better or worse, I tend to usephpMyAdminas my "admin" interface
> > > in the early stages of a website to fix problems for various users,
> > > etc.  Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Heroku" 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/heroku?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to