ga-wdi-boston / full-stack-project

Other
8 stars 64 forks source link

GET request on deployed site not working #1031

Closed 3point14guy closed 7 years ago

3point14guy commented 7 years ago

I have my front end deployed on git hub and the back end deployed on heroku. I am able to sign-up, sign-in, and log out. I get a 500 error when I do my get request.

3point14guy commented 7 years ago

I got more details from Myles on the issue he posted #1030. He walked me through how to check to see if my table existed on the heroku site by running heroku pg:psql and then \d to see what tables were listed.

My movie table was not there. I missed a db:migrate step at some point, so I ran heroku run rake db:migrate to get my movie table synced with heroku. Now I just have to put some data back in there!