Index: go/database/setup_test_db.sql |
diff --git a/go/database/setup_test_db.sql b/go/database/setup_test_db.sql |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1fd294c0c1c7b4c17058f3986045277158e28ad8 |
--- /dev/null |
+++ b/go/database/setup_test_db.sql |
@@ -0,0 +1,4 @@ |
+# SQL for setting up the test database and user. |
+CREATE DATABASE IF NOT EXISTS sk_testing; |
+GRANT SELECT,INSERT,UPDATE,DELETE ON sk_testing.* TO 'test_rw'@'localhost'; |
+GRANT ALL ON sk_testing.* TO 'test_root'@'localhost'; |