This commit was generated by cvs2svn to compensate for changes in r4407,
[freeside.git] / rt / etc / acl.Oracle
1 sub acl {
2 return (
3 "CREATE USER ${RT::DatabaseUser} identified by ${RT::DatabasePassword}".
4 "temporary tablespace TEMP" .
5 "default tablespace USERS" .
6 "quota unlimited on USERS;" ,
7 "grant connect, resource to ${RT::DatabaseUser};",
8 "exit;");
9 }
10 1;