Skip to content
Snippets Groups Projects
Commit f05184be authored by Brandon Bergren's avatar Brandon Bergren
Browse files

Fix #1036342 and stub out needed update.

parent 1cf96e04
No related branches found
No related tags found
No related merge requests found
...@@ -42,10 +42,7 @@ function gmap_taxonomy_schema() { ...@@ -42,10 +42,7 @@ function gmap_taxonomy_schema() {
'tid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'tid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
'marker' => array('type' => 'varchar', 'length' => 32), 'marker' => array('type' => 'varchar', 'length' => 32),
), ),
'primary key' => array('vid'), 'primary key' => array('nid'),
'indexes' => array(
'nid' => array('nid'),
),
); );
return $schema; return $schema;
...@@ -93,3 +90,12 @@ function gmap_taxonomy_update_6001() { ...@@ -93,3 +90,12 @@ function gmap_taxonomy_update_6001() {
return $ret; return $ret;
} }
/**
* Rebuild {gmap_taxonomy_node} again.
*/
/*
function gmap_taxonomy_update_7000() {
// @@@ FIXME -- rebuild the table from scratch again.
}
*/
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment