/// Add contents
$result .= XMLDB_LINEFEED;
- $result .= ' /// Create table ' . $table->getName() . XMLDB_LINEFEED;
+ $result .= ' /// Define table ' . $table->getName() . ' to be created' . XMLDB_LINEFEED;
$result .= ' $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED;
$result .= XMLDB_LINEFEED;
$result .= ' /// Adding fields to table ' . $table->getName() . XMLDB_LINEFEED;
/// Add contents
$result .= XMLDB_LINEFEED;
- $result .= ' /// Create table ' . $table->getName() . XMLDB_LINEFEED;
+ $result .= ' /// Define table ' . $table->getName() . ' to be dropped' . XMLDB_LINEFEED;
$result .= ' $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED;
/// Launch the proper DDL
/// Add contents
$result .= XMLDB_LINEFEED;
- $result .= ' /// Create table ' . $table->getName() . XMLDB_LINEFEED;
+ $result .= ' /// Define table ' . $table->getName() . ' to be renamed to NEWNAMEGOESHERE' . XMLDB_LINEFEED;
$result .= ' $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED;
/// Launch the proper DDL