Files
heygermany-e2e-mrg1mo7z/db/postgres/0032-backend-translation.sql
e2e aae77ea31e
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 09:28:50 +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)
);