Update DESIGN, forgot to add new perms for the new tables.
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 21 Apr 2014 15:10:56 +0000 (15:10 +0000)
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 21 Apr 2014 15:10:56 +0000 (15:10 +0000)
BUG=skia:
R=mtklein@google.com

Author: jcgregorio@google.com

Review URL: https://codereview.chromium.org/243013005

git-svn-id: http://skia.googlecode.com/svn/trunk@14278 2bbb7eff-a529-9590-31e7-b0007b416f81

experimental/webtry/DESIGN.md

index 3aaf2e7..7b85089 100644 (file)
@@ -134,7 +134,9 @@ Initial setup of the database, the user, and the only table:
     CREATE DATABASE webtry;
     USE webtry;
     CREATE USER 'webtry'@'%' IDENTIFIED BY '<password is in valentine>';
-    GRANT SELECT, INSERT, UPDATE ON webtry.webtry TO 'webtry'@'%';
+    GRANT SELECT, INSERT, UPDATE ON webtry.webtry       TO 'webtry'@'%';
+    GRANT SELECT, INSERT, UPDATE ON webtry.workspace    TO 'webtry'@'%';
+    GRANT SELECT, INSERT, UPDATE ON webtry.workspacetry TO 'webtry'@'%';
 
     // If this gets changed also update the sqlite create statement in webtry.go.