From d261d6667cd74898585ab3c5ae0b7f276e75fe5a Mon Sep 17 00:00:00 2001 From: Alex Kaminskii Date: Mon, 17 Oct 2022 11:32:02 +0200 Subject: [PATCH] chore(postgresql):1.8.2 - create file_key column --- ee/scripts/helm/db/init_dbs/postgresql/1.8.2/1.8.2.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ee/scripts/helm/db/init_dbs/postgresql/1.8.2/1.8.2.sql diff --git a/ee/scripts/helm/db/init_dbs/postgresql/1.8.2/1.8.2.sql b/ee/scripts/helm/db/init_dbs/postgresql/1.8.2/1.8.2.sql new file mode 100644 index 000000000..3c1895ca1 --- /dev/null +++ b/ee/scripts/helm/db/init_dbs/postgresql/1.8.2/1.8.2.sql @@ -0,0 +1,5 @@ +BEGIN; + +ALTER TABLE sessions ADD file_key BYTEA NULL; + +COMMIT; \ No newline at end of file