Index: tablefield.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/tablefield/tablefield.module,v
retrieving revision 1.18
diff -u -p -r1.18 tablefield.module
--- tablefield.module	18 Oct 2010 13:34:07 -0000	1.18
+++ tablefield.module	20 Nov 2010 14:27:37 -0000
@@ -36,7 +36,10 @@ function tablefield_field_settings_form(
     '#type' => 'radios',
     '#title' => t('Table cell processing'),
     '#default_value' => isset($field['settings']['cell_processing']) ? $field['settings']['cell_processing'] : 0,
-    '#options' => $options,
+    '#options' => array(
+      t('Plain text'),
+      t('Filtered text (user selects text format)'),
+    ),
   );
   $form['default_message'] = array(
     '#type' => 'markup',
@@ -57,9 +60,10 @@ function tablefield_field_schema($field)
         'size' => 'big',
       ),
       'format' => array(
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => FALSE,
+        'type' => 'varchar',
+        'length' => 255,
+        'not null' => TRUE,
+        'default' => '',
       ),
     ),
   );
