/// Launch the proper DDL
$result .= XMLDB_LINEFEED;
- $result .= ' /// Launch create table for ' . $table->getName() . XMLDB_LINEFEED;
- $result .= ' $result = $result && create_table($table);' . XMLDB_LINEFEED;
+ $result .= ' /// Conditionally launch create table for ' . $table->getName() . XMLDB_LINEFEED;
+ $result .= ' if (!table_exists($table)) {' . XMLDB_LINEFEED;
+ $result .= ' $result = $result && create_table($table);' . XMLDB_LINEFEED;
+ $result .= ' }' . XMLDB_LINEFEED;
/// Add the proper upgrade_xxxx_savepoint call
$result .= $this->upgrade_savepoint_php ($structure);
/// Launch the proper DDL
$result .= XMLDB_LINEFEED;
- $result .= ' /// Launch drop table for ' . $table->getName() . XMLDB_LINEFEED;
- $result .= ' $result = $result && drop_table($table);' . XMLDB_LINEFEED;
+ $result .= ' /// Conditionally launch drop table for ' . $table->getName() . XMLDB_LINEFEED;
+ $result .= ' if (table_exists($table)) {' . XMLDB_LINEFEED;
+ $result .= ' $result = $result && drop_table($table);' . XMLDB_LINEFEED;
+ $result .= ' }' . XMLDB_LINEFEED;
/// Add the proper upgrade_xxxx_savepoint call
$result .= $this->upgrade_savepoint_php ($structure);