Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: go/database/setup_test_db.sql

Issue 813443002: Overhaul database package (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Assume the MySQL password is "" when running locally Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « go/database/setup_test_db ('k') | go/database/testutil/testutil.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # SQL for setting up the test database and user.
2 CREATE DATABASE IF NOT EXISTS sk_testing;
3 GRANT ALL ON sk_testing.* TO 'test_root'@'localhost';
4 GRANT SELECT,INSERT,UPDATE,DELETE ON sk_testing.* TO 'test_rw'@'localhost';
5
6 # SkiaPerf database.
7 CREATE DATABASE IF NOT EXISTS skia;
8 GRANT SELECT,INSERT,UPDATE,DELETE ON skia.* TO 'readwrite'@'localhost';
9
10 # SkiaGold database.
11 CREATE DATABASE IF NOT EXISTS skiacorrectness;
12 GRANT SELECT,INSERT,UPDATE,DELETE ON skiacorrectness.* TO 'readwrite'@'localhost ';
13
14 # Buildbot database.
15 CREATE DATABASE IF NOT EXISTS buildbot;
16 GRANT SELECT,INSERT,UPDATE,DELETE ON buildbot.* TO 'readwrite'@'localhost';
OLDNEW
« no previous file with comments | « go/database/setup_test_db ('k') | go/database/testutil/testutil.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698