--- node_style.install.old 2009-04-16 09:49:45.000000000 -0500 +++ node_style.install 2009-04-16 09:50:57.000000000 -0500 @@ -11,23 +11,23 @@ */ function node_style_schema() { $schema['node_style_schemes'] = array( - 'description' => t('Node style module: style scheme settings'), + 'description' => 'Node style module: style scheme settings', 'fields' => array( 'sid' => array( - 'description' => t('TODO'), + 'description' => 'schema id', 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ), 'name' => array( - 'description' => t('TODO'), + 'description' => 'schema name', 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', ), 'variables' => array( - 'description' => t('TODO'), + 'description' => 'serialized array of schema settings', 'type' => 'text', 'not null' => TRUE, ), @@ -36,17 +36,17 @@ function node_style_schema() { ); $schema['node_style_maps'] = array( - 'description' => t('Node style module: nid to scheme map'), + 'description' => 'Node style module: nid to scheme map', 'fields' => array( 'nid' => array( - 'description' => t('TODO'), + 'description' => 'node id - primary key', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'sid' => array( - 'description' => t('TODO'), + 'description' => 'schema id - foreign key', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE,