Summary
I followed the Configuration in the Mattermost Database instructions but at the very end, the command SELECT * FROM Configurations WHERE Active = 1; fails with ERROR: relation "configurations" does not exist
Observed behavior
I used my GUI client to connect to the DB and sure enough there is a table called configurations with 2 records. One record has a null value for active, while the other has the string t. Strangely, I cannot change the value t to 1. Even stranger, from the CLI, SELECT * FROM configurations; yields the same error message as above. But I see it in my GUI client!
Any help would be appreciated. Many thanks in advance to all!
Result of bin/mattermost config get SqlSettings.DataSource run as mattermost user: SqlSettings.DataSource: "postgres://mmuser:redacted@127.0.0.1:5432/mattermost?sslmode=disable&connect_timeout=10"
I did indeed run the bin/mattermost config migrate command as mattermost user.
Ah, thank you for the assessment. Iām more used to mysql, so the t threw me off. I guess the documentation could use a bit more clarification between mysql and postgres (it already does so for most all the steps). But it puzzled me as I wanted to verify the migration was successful. Thanks again!