Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions deployment/base.sql
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
CREATE DATABASE pool;
CREATE USER pool@`127.0.0.1` IDENTIFIED WITH mysql_native_password BY '98erhfiuehw987fh23d';
CREATE USER pool@`172.17.0.1` IDENTIFIED WITH mysql_native_password BY '98erhfiuehw987fh23d';
CREATE USER pool@localhost IDENTIFIED WITH mysql_native_password BY '98erhfiuehw987fh23d';
GRANT ALL ON pool.* TO pool@`127.0.0.1`;
GRANT ALL ON pool.* TO pool@`172.17.0.1`;
GRANT ALL ON pool.* TO pool@localhost;
FLUSH PRIVILEGES;
USE pool;
Expand Down