commit 0829e598fc6529d2efb5ac4cb6c95b575da8d8ef Author: Douglas Barone Date: Thu Mar 3 09:39:38 2022 -0400 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8c0636e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +output.sql \ No newline at end of file diff --git a/basesql.sql b/basesql.sql new file mode 100644 index 0000000..1bb9aea --- /dev/null +++ b/basesql.sql @@ -0,0 +1,7 @@ +CREATE USER 'marcos' @'%' IDENTIFIED VIA mysql_native_password USING '***'; + +GRANT USAGE ON *.* TO 'marcos' @'%' REQUIRE NONE WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0; + +CREATE DATABASE IF NOT EXISTS `marcos`; + +GRANT ALL PRIVILEGES ON `marcos`.* TO 'marcos' @'%'; \ No newline at end of file diff --git a/generate.sh b/generate.sh new file mode 100644 index 0000000..e69de29