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

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: Move README Created 6 years 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 SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON sk_testing.* TO 'test_user'@'lo calhost';
tfarina 2014/12/17 18:49:31 I have something in my playground repo: https://gi
tfarina 2014/12/17 18:49:31 where is the command for creating test_user?
borenet 2014/12/17 21:02:21 It's created automatically in the GRANT command if
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