Files
heygermany-e2e-mrg4m7dd/db/postgres/0032-backend-translation.sql
e2e 6c231d1d36
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled
chore: heygermany customer project
2026-07-11 10:52:27 +02:00

9 lines
270 B
SQL

CREATE TABLE IF NOT EXISTS app.backend_translation (
locale TEXT NOT NULL,
namespace TEXT NOT NULL,
content_json JSONB NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
PRIMARY KEY (locale, namespace)
);