Index: experimental/webtry/DESIGN.md |
diff --git a/experimental/webtry/DESIGN.md b/experimental/webtry/DESIGN.md |
index 349a10e4956db7a3539e64f3a5770fcd88fcb26d..0c4f3a1b87ef4270a617f603779099b5d7c780af 100644 |
--- a/experimental/webtry/DESIGN.md |
+++ b/experimental/webtry/DESIGN.md |
@@ -138,6 +138,8 @@ Initial setup of the database, the user, and the only table: |
CREATE USER 'webtry'@'%' IDENTIFIED BY '<password is in valentine>'; |
GRANT SELECT, INSERT, UPDATE ON webtry.webtry TO 'webtry'@'%'; |
+ // If this gets changed also update the sqlite create statement in webtry.go. |
mtklein
2014/04/11 21:45:06
Maybe add a mode to webtry.go to do the remote DB
jcgregorio
2014/04/12 02:37:08
Actually I've the got MySQL webtry user locked dow
|
+ |
CREATE TABLE webtry ( |
code TEXT DEFAULT '' NOT NULL, |
create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, |