Files
heygermany-e2e-mrg3zujp/db/postgres/0032-backend-translation.sql
e2e 3bb535efe8
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:35:04 +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)
);