Index: emfield.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/emfield/emfield.module,v retrieving revision 1.12.4.4 diff -u -r1.12.4.4 emfield.module --- emfield.module 27 May 2008 02:37:00 -0000 1.12.4.4 +++ emfield.module 28 May 2008 01:10:21 -0000 @@ -89,10 +89,10 @@ function emfield_field_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' => 'longtext', '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), ); foreach (module_implements('emfield_field_columns_extra') as $module) { $extra = module_invoke($module, 'emfield_field_columns_extra');