From d959159ccf9c8e5b7df0f1059391838be24eed8b Mon Sep 17 00:00:00 2001 From: Jim Lambert Date: Wed, 19 Feb 2020 20:49:10 -0500 Subject: [PATCH] setup gorm schema with privs --- dialects/oci8/contrib/setup.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dialects/oci8/contrib/setup.sql diff --git a/dialects/oci8/contrib/setup.sql b/dialects/oci8/contrib/setup.sql new file mode 100644 index 00000000..3a01be2b --- /dev/null +++ b/dialects/oci8/contrib/setup.sql @@ -0,0 +1,9 @@ +ALTER SESSION +SET + CONTAINER = XEPDB1; +create user gorm identified by gorm; +GRANT CONNECT, + RESOURCE, + DBA TO gorm; +GRANT CREATE SESSION TO gorm; +GRANT UNLIMITED TABLESPACE TO gorm; \ No newline at end of file