Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @drz,
Looking at the error you’ve provided, this is related to your application’s database and specifically calling an unknown column. Here is the line you want to check
Column not found: 1054 Unknown column ‘revision.revisionuser’ in 'field list
The exact query you are trying to run is
SELECT revision.revisionid AS revisionid, revision.langcode AS langcode, revision.revisionuser AS revisionuser, revision.revisioncreated AS revisioncreated, revision.revisionlog AS revisionlog, base.id AS id, base.type AS type, base.uuid AS uuid, CASE base.revisionid WHEN revision.revisionid THEN 1 ELSE 0 END AS isDefaultRevision
FROM
{blockcontent} base
INNER JOIN {blockcontentrevision} revision ON revision.revisionid = base.revisionid; Array
(
As we can’t know what function you are trying to execute or your database and application structure, we won’t be able to provide more in depth solution that just breaking down your error as I’ve just did.
Regards, KDSys