I have a rails app hosted in heroku. I have a Questions table with a content column. The content column contains the word of a question. So for example if you queried. Question.first.content, you would get "Hello, how are you?". I have 8 questions in total. I would like to manually go into the database and change these questions.
I tried running the terminal on heroku with this command:
heroku pg:psql
and I used this query to change the content column of a record
UPDATE Questions
SET content="What country does this story orginate? (Japan)"
However I get this error message:
ERROR: column "What country does this story orginate? (Japan)" does not exist
LINE 2: SET content="What country does this story orginate? (Japan)"...
What is the right query of changing the question's content column?