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.

10 lines
377 B
MySQL

5 years ago
create schema sos;
grant all privileges on database sos to sos;
5 years ago
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;