From 516e63915399f35569a3eee3856cadf1608838b5 Mon Sep 17 00:00:00 2001 From: amentis Date: Mon, 27 Nov 2023 14:58:29 +0200 Subject: [PATCH] small fix --- dmp-db-scema/updates/00.01.024_addLanguage.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmp-db-scema/updates/00.01.024_addLanguage.sql b/dmp-db-scema/updates/00.01.024_addLanguage.sql index d7b645bd7..c94160411 100644 --- a/dmp-db-scema/updates/00.01.024_addLanguage.sql +++ b/dmp-db-scema/updates/00.01.024_addLanguage.sql @@ -7,7 +7,7 @@ BEGIN CREATE TABLE public."Language" ( id uuid NOT NULL, - language_code character varying(20) NOT NULL, + code character varying(20) NOT NULL, payload text NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL,