Rails Heroku Migrate Unknown Error
Posted
by Ryan Max
on Stack Overflow
See other posts from Stack Overflow
or by Ryan Max
Published on 2010-05-10T02:11:04Z
Indexed on
2010/05/10
2:18 UTC
Read the original article
Hit count: 333
Hello.
I am trying to get my app up and running on heroku. However once I go to migrate I get the following error:
$ heroku rake db:migrate
rake aborted!
An error has occurred, this and all later migrations canceled:
530 5.7.0 Must issue a STARTTLS command first. bv42sm676794ibb.5
(See full trace by running task with --trace)
(in /disk1/home/slugs/155328_f2d3c00_845e/mnt)
== BortMigration: migrating =================================================
-- create_table(:sessions)
-> 0.1366s
-- add_index(:sessions, :session_id)
-> 0.0759s
-- add_index(:sessions, :updated_at)
-> 0.0393s
-- create_table(:open_id_authentication_associations, {:force=>true})
-> 0.0611s
-- create_table(:open_id_authentication_nonces, {:force=>true})
-> 0.0298s
-- create_table(:users)
-> 0.0222s
-- add_index(:users, :login, {:unique=>true})
-> 0.0068s
-- create_table(:passwords)
-> 0.0123s
-- create_table(:roles)
-> 0.0119s
-- create_table(:roles_users, {:id=>false})
-> 0.0029s
I'm not sure exactly what it means. Or really what it means at all. Could it have to do with my Bort installation? I did remove all the open-id stuff from it. But I never had any problems with my migrations locally. Additionally on Bort the Restful Authentication uses my gmail stmp to send confirmation emails...all the searches on google i do on STARTTLS have to do with stmp. Can someone point me in the right direction?
© Stack Overflow or respective owner