7 lines
202 B
SQL
7 lines
202 B
SQL
-- create the databases;
|
|
CREATE DATABASE mattermost;
|
|
|
|
-- create users and privileges
|
|
CREATE USER mattermost WITH PASSWORD 'skdr02439spfgojsl';
|
|
GRANT ALL PRIVILEGES ON DATABASE mattermost TO mattermost;
|