I created a new app on my Heroku account, ran both heroku rake
db:migrate and heroku db:push and got success messages for both.

However when I ran heroku open (as instructed at the end of the quick
start) I got the above error even though the migration clearly showed
documents table being created. Not being at all familiar with
PostgresSQL, and there not being much troubleshooting content in the
documentation (or seeing a prior thread here that helped), I'm at a
loss for what to do.

Here is the SQL query (I don't recognize any of the field names, they
aren't in my app) as shown in crash.log:

SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc,
a.attnotnull
              FROM pg_attribute a LEFT JOIN pg_attrdef d
                ON a.attrelid = d.adrelid AND a.attnum = d.adnum
             WHERE a.attrelid = 'documents'::regclass
               AND a.attnum > 0 AND NOT a.attisdropped
             ORDER BY a.attnum
--~--~---------~--~----~------------~-------~--~----~
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