- Patch #719730 by anarcat, ctmattice1, peterx: drop the sequences and queue tables from D5 during the D6 to D7 upgrade.
parent
cec41faf47
commit
0071d5e296
|
@ -527,6 +527,12 @@ function update_fix_d7_requirements() {
|
|||
'expire' => array('expire'),
|
||||
),
|
||||
);
|
||||
// Check for queue table that may remain from D5 or D6, if found
|
||||
//drop it.
|
||||
if (db_table_exists('queue')) {
|
||||
db_drop_table('queue');
|
||||
}
|
||||
|
||||
db_create_table('queue', $schema['queue']);
|
||||
|
||||
// Create the sequences table.
|
||||
|
@ -542,6 +548,11 @@ function update_fix_d7_requirements() {
|
|||
),
|
||||
'primary key' => array('value'),
|
||||
);
|
||||
// Check for sequences table that may remain from D5 or D6, if found
|
||||
//drop it.
|
||||
if (db_table_exists('sequences')) {
|
||||
db_drop_table('sequences');
|
||||
}
|
||||
db_create_table('sequences', $schema['sequences']);
|
||||
// Initialize the table with the maximum current increment of the tables
|
||||
// that will rely on it for their ids.
|
||||
|
|
Loading…
Reference in New Issue