Files
heygermany-e2e-mrg3vnfz/db/postgres/0032-backend-translation.sql
e2e 81ea8ef5d1
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:31:48 +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)
);