Index: contrib/emaudio/emaudio.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emaudio/emaudio.module,v retrieving revision 1.1.4.4 diff -u -r1.1.4.4 emaudio.module --- contrib/emaudio/emaudio.module 27 May 2008 02:37:00 -0000 1.1.4.4 +++ contrib/emaudio/emaudio.module 28 May 2008 17:58:42 -0000 @@ -43,10 +43,10 @@ case 'database columns': $columns = array( - 'embed' => array('type' => 'longtext', 'not null' => TRUE, 'default' => "''", 'sortable' => TRUE), - 'value' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => "''", 'sortable' => TRUE), - 'provider' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => "''", 'sortable' => TRUE), - 'data' => array('type' => 'longtext', 'not null' => TRUE, 'default' => "''", 'sortable' => false), + 'embed' => array('type' => 'text', 'size' => 'big', 'not null' => FALSE, 'sortable' => TRUE), + 'value' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'sortable' => TRUE), + 'provider' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'sortable' => TRUE), + 'data' => array('type' => 'text', 'size' => 'big', 'not null' => FALSE, 'sortable' => false), ); switch ($field['type']) { case 'emaudio': Index: contrib/video_cck/video_cck.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/video_cck/video_cck.module,v retrieving revision 1.5.4.4 diff -u -r1.5.4.4 video_cck.module --- contrib/video_cck/video_cck.module 27 May 2008 02:37:01 -0000 1.5.4.4 +++ contrib/video_cck/video_cck.module 28 May 2008 17:56:30 -0000 @@ -43,10 +43,10 @@ case 'database columns': $columns = array( - 'embed' => array('type' => 'longtext', 'not null' => TRUE, 'default' => "''", 'sortable' => TRUE), - 'value' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => "''", 'sortable' => TRUE), - 'provider' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => "''", 'sortable' => TRUE), - 'data' => array('type' => 'longtext', 'not null' => TRUE, 'default' => "''", 'sortable' => false), + 'embed' => array('type' => 'text', 'size' => 'big', 'not null' => FALSE, 'sortable' => TRUE), + 'value' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'sortable' => TRUE), + 'provider' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'sortable' => TRUE), + 'data' => array('type' => 'text', 'size' => 'big', 'not null' => FALSE, 'sortable' => false), ); switch ($field['type']) { case 'video_cck': Index: emfield.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/emfield/emfield.module,v retrieving revision 1.12.4.5 diff -u -r1.12.4.5 emfield.module --- emfield.module 28 May 2008 02:17:47 -0000 1.12.4.5 +++ emfield.module 28 May 2008 17:55:46 -0000 @@ -89,10 +89,10 @@ function emfield_field_columns() { $columns = array( - 'embed' => array('type' => 'longtext', 'not null' => TRUE, 'unsigned' => TRUE, 'not null' => FALSE, 'sortable' => TRUE), + 'embed' => array('type' => 'text', 'size' => 'big', 'not null' => TRUE, 'unsigned' => TRUE, 'not null' => FALSE, 'sortable' => TRUE), 'value' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'unsigned' => TRUE, 'not null' => FALSE, 'sortable' => TRUE), 'provider' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'unsigned' => TRUE, 'not null' => FALSE, 'sortable' => TRUE), - 'data' => array('type' => 'longtext', 'not null' => TRUE, 'unsigned' => TRUE, 'not null' => FALSE, 'sortable' => FALSE), + 'data' => array('type' => 'text', 'size' => 'big', 'not null' => TRUE, 'unsigned' => TRUE, 'not null' => FALSE, 'sortable' => FALSE), ); foreach (module_implements('emfield_field_columns_extra') as $module) { $extra = module_invoke($module, 'emfield_field_columns_extra');