Index: modules/system/system.install =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.install,v retrieving revision 1.350 diff -u -p -r1.350 system.install --- modules/system/system.install 1 Jul 2009 08:41:52 -0000 1.350 +++ modules/system/system.install 1 Jul 2009 09:57:28 -0000 @@ -2223,6 +2223,44 @@ function system_update_7028() { return $ret; } +/** + * Add the block_node_type table. + */ +function system_update_7029() { + $ret = array(); + + $schema['block_node_type'] = array( + 'description' => 'Sets up display criteria for blocks based on content types', + 'fields' => array( + 'module' => array( + 'type' => 'varchar', + 'length' => 64, + 'not null' => TRUE, + 'description' => "The block's origin module, from {block}.module.", + ), + 'delta' => array( + 'type' => 'varchar', + 'length' => 32, + 'not null' => TRUE, + 'description' => "The block's unique delta within module, from {block}.delta.", + ), + 'type' => array( + 'type' => 'varchar', + 'length' => 32, + 'not null' => TRUE, + 'description' => "The machine-readable name of this type from {node_type}.type.", + ), + ), + 'primary key' => array('module', 'delta', 'type'), + 'indexes' => array( + 'type' => array('type'), + ), + ); + + db_create_table($ret, 'block_node_type', $schema['block_node_type']); + return $ret; +} + /**