Copy table defaults to structure and data (RFE #856517).

This commit is contained in:
Michal Čihař
2004-03-10 16:03:39 +00:00
parent 0f6eb412ec
commit ff79c198b8
2 changed files with 6 additions and 2 deletions

View File

@@ -29,6 +29,8 @@ $Source$
while editing. while editing.
* db_details_structure.php, lang/*: Implement database renaming (RFE * db_details_structure.php, lang/*: Implement database renaming (RFE
#792463). #792463).
* tbl_properties_operations.php: Copy table defaults to structure and data
(RFE #856517).
2004-03-09 Marc Delisle <lem9@users.sourceforge.net> 2004-03-09 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php, libraries/display*, lang/*: * libraries/common.lib.php, libraries/display*, lang/*:

View File

@@ -196,12 +196,14 @@ for ($i = 0; $i < $num_dbs; $i++) {
</tr> </tr>
<tr> <tr>
<td nowrap="nowrap"> <td nowrap="nowrap">
<input type="radio" name="what" value="structure" id="radio_copy_structure" checked="checked" /> <input type="radio" name="what" value="structure" id="radio_copy_structure" />
<label for="radio_copy_structure"><?php echo $strStrucOnly; ?></label>&nbsp;&nbsp;<br /> <label for="radio_copy_structure"><?php echo $strStrucOnly; ?></label>&nbsp;&nbsp;<br />
<input type="radio" name="what" value="data" id="radio_copy_data" /> <input type="radio" name="what" value="data" id="radio_copy_data" checked="checked" />
<label for="radio_copy_data"><?php echo $strStrucData; ?></label>&nbsp;&nbsp;<br /> <label for="radio_copy_data"><?php echo $strStrucData; ?></label>&nbsp;&nbsp;<br />
<input type="radio" name="what" value="dataonly" id="radio_copy_dataonly" /> <input type="radio" name="what" value="dataonly" id="radio_copy_dataonly" />
<label for="radio_copy_dataonly"><?php echo $strDataOnly; ?></label>&nbsp;&nbsp;<br /> <label for="radio_copy_dataonly"><?php echo $strDataOnly; ?></label>&nbsp;&nbsp;<br />
<input type="checkbox" name="drop_if_exists" value="true" id="checkbox_drop" /> <input type="checkbox" name="drop_if_exists" value="true" id="checkbox_drop" />
<label for="checkbox_drop"><?php echo $strStrucDrop; ?></label>&nbsp;&nbsp;<br /> <label for="checkbox_drop"><?php echo $strStrucDrop; ?></label>&nbsp;&nbsp;<br />
<input type="checkbox" name="auto_increment" value="1" id="checkbox_auto_increment" /> <input type="checkbox" name="auto_increment" value="1" id="checkbox_auto_increment" />