Change the VARCHAR for url from 65k to 1k
Rationale: URLs shouldn't come anywhere near the size of 65k characters
and it would be better to start off small and wait for people to hit the
1k limit than to start out with a limit no one will hit and largely increase our database

Signed-off-by: Scott Zawalski <scottz@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1577 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/migrations/006_add_table_query_history.py b/tko/migrations/006_add_table_query_history.py
index 54b514d..41c5e29 100644
--- a/tko/migrations/006_add_table_query_history.py
+++ b/tko/migrations/006_add_table_query_history.py
@@ -9,7 +9,7 @@
 ADD_TABLE_QUERY_HISTORY = """
 CREATE TABLE IF NOT EXISTS query_history
 (uid VARCHAR(32), time_created VARCHAR(32), user_comment VARCHAR(256),
-url VARCHAR(65534));
+url VARCHAR(1000));
 """
 
 DROP_TABLE_QUERY_HISTORY = """