You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
378 B
SQL
11 lines
378 B
SQL
create schema sos;
|
|
grant all privileges on database sos to sos;
|
|
grant all privileges on schema sos to sos;
|
|
|
|
alter default privileges for user sos in schema sos grant all privileges on tables to sos;
|
|
alter default privileges for user sos in schema sos grant all privileges on functions to sos;
|
|
|
|
create extension if not exists "uuid-ossp";
|
|
CREATE EXTENSION IF NOT EXISTS citext;
|
|
|