From 1706f7354e2f03c7c8b061b37dca2c19fcda0b3e Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sat, 4 Jul 2009 04:23:27 +0000 Subject: #453254 follow-up by agentrickard: Move block update to block.install. --- modules/system/system.install | 40 ---------------------------------------- 1 file changed, 40 deletions(-) (limited to 'modules/system/system.install') diff --git a/modules/system/system.install b/modules/system/system.install index 0d921426e..f402edd58 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2223,46 +2223,6 @@ 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; -} - - - /** * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. -- cgit v1.2.3