Skip to content
Snippets Groups Projects
Commit aa5aade0 authored by Matt Butcher's avatar Matt Butcher
Browse files

#443902: Invalid size in the update hook.

parent 23595dba
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ function quiz_update_6303() {
$result = array();
// Add a field that allows an admin to mark a quiz as invalid.
db_add_field($result, 'quiz_node_results', 'is_invalid', array('type' => 'int', 'size' => '', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0));
db_add_field($result, 'quiz_node_results', 'is_invalid', array('type' => 'int', 'size' => 'tiny', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0));
return $result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment