diff --git a/ee/scripts/helm/db/init_dbs/postgresql/1.2.0/1.2.0.sql b/ee/scripts/helm/db/init_dbs/postgresql/1.2.0/1.2.0.sql new file mode 100644 index 000000000..08e5c5293 --- /dev/null +++ b/ee/scripts/helm/db/init_dbs/postgresql/1.2.0/1.2.0.sql @@ -0,0 +1,6 @@ +BEGIN; +CREATE TYPE user_origin AS ENUM ('saml'); +ALTER TABLE public.users + ADD COLUMN origin user_origin NULL DEFAULT NULL, + ADD COLUMN internal_id text NULL DEFAULT NULL; +COMMIT; \ No newline at end of file