Index: video_upload.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/video_upload/video_upload.module,v
retrieving revision 1.1.2.14
diff -u -r1.1.2.14 video_upload.module
--- video_upload.module	31 Dec 2008 23:15:06 -0000	1.1.2.14
+++ video_upload.module	11 Mar 2009 14:53:46 -0000
@@ -159,7 +159,7 @@
         ),
         // time of status update
         'status_ts' => array(
-          'type' => 'int(11)',
+          'type' => 'int', //'type' => 'int(11)' (11) is not needed
           'not null' => TRUE,
           'sortable' => TRUE,
           'default' => '0',
@@ -472,8 +472,8 @@
         array(
           'id' => '0',
           'status' => VIDEO_UPLOAD_STATUS_UNKNOWN,
-          'status_ts' => '',
-          'fid' => '',
+          'status_ts' => 0, //was 'status_ts' => '' but status_ts is an int field
+          'fid' => 0, //was 'fid' => '' but fid is an int field
           // @todo see other inline delete todo items
           // 'delete' => 0,
         ),

