Several of out attributes (like bootnum and boot_times) that are standard test_attributes are
signifigantly longer than 100 char. So extended value column to 1K.

Signed-off-by: Travis Miller <raphtee@google.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@2987 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/migrations/022_widen_attribute_value_field.py b/tko/migrations/022_widen_attribute_value_field.py
new file mode 100644
index 0000000..e970a53
--- /dev/null
+++ b/tko/migrations/022_widen_attribute_value_field.py
@@ -0,0 +1,7 @@
+def migrate_up(mgr):
+    mgr.execute("alter table test_attributes modify column value varchar(1024);")
+    mgr.execute("alter table iteration_attributes modify column value varchar(1024);")
+
+def migrate_down(mgr):
+    mgr.execute("alter table test_attributes modify column value varchar(100);")
+    mgr.execute("alter table iteration_attributes modify column value varchar(100);")