FUOTA Server storage error

Hi!
I´m trying to set up FOUTA server on a Kubernetes enviroment, but I get a psql error. I´m trying to use the current PostgreSQL instance where the network server and app server are running (version 10).

This is the error log:

Any ideas? Thanks!

This often happens when multiple services have been using the same database, and the migration table has been polluted. Each service must have its own database (which can still be the same PostgreSQL instance).

I´m using a different database, on the same PostgreSQL instance

In that case, you might have missed the following step in the db setup?

-- enable the hstore extension
create extension hstore;
1 Like

Hi @brocaar.
I did enable the extension… just to be sure, I tried again:

image