wicked-waifus-rs/docker/postgres/scripts/0_INIT.sql

3 lines
173 B
MySQL
Raw Normal View History

CREATE DATABASE shorekeeper_db;
CREATE USER shorekeeper_user WITH encrypted password 'shorekeeper_pass';
GRANT ALL PRIVILEGES ON DATABASE shorekeeper_db to shorekeeper_user;