Added by Nicholas Loulloudes almost 7 years ago
Hi,
I just tried to upgrade from 7.3.2 to 7.4.3 and the following error appears.
I am running OP over MySQL and Apache web server
== 20171106074835 MoveHashedTokenToCore: migrating ============================ -- rename_table(:tokens, :plaintext_tokens) rake aborted! StandardError: An error has occurred, this and all later migrations canceled: PG::UndefinedTable: ERROR: relation "tokens_pkey" does not exist : ALTER INDEX "tokens_pkey" RENAME TO "plaintext_tokens_pkey"
Replies (6)
Hi Nicholas,
you write you’re using a MySQL installation, yet the error is a PostgreSQL error. Please ensure your database connection is correct.
Best,
Oliver
Hi Oliver,
Sorry that was a mistake. I am using postgresql. I even upgraded to 9.6.
Still the error appears.
I tried even running
openproject run rake db:migrate
, but the same results appear.Any suggestions?
Also somewhere along the stack trace I see the following:
/opt/openproject/db/migrate/20171106074835_move_hashed_token_to_core.rb:7:in `up'
The error is that you are missing the
tokens
table from before the migration. I cannot fathom how you got into that state. The migration tries to rename thetokens
table toplaintext_tokens
and fails to do so.Can you check what tables exist before that migration by running
psql -d <your database> -c "SELECT * FROM pg_catalog.pg_tables;"
?Best,
Oliver
The tokens_pkey index was missing.
Fixed by running the following in psql
create index tokens_pkey ON tokens(id);