handling of AUTO_INCREMENT when moving a table

This commit is contained in:
Marc Delisle
2006-07-22 22:09:04 +00:00
parent 4678dfe4b3
commit 6cb808a665
2 changed files with 7 additions and 1 deletions

View File

@@ -9,6 +9,8 @@ $Source$
2006-07-22 Marc Delisle <lem9@users.sourceforge.net> 2006-07-22 Marc Delisle <lem9@users.sourceforge.net>
* libraries/display_import.lib.php: the Character set of the file * libraries/display_import.lib.php: the Character set of the file
could appear twice could appear twice
* tbl_properties_operations.php: handling of AUTO_INCREMENT when moving a
table
2006-07-20 Michal Čihař <michal@cihar.com> 2006-07-20 Michal Čihař <michal@cihar.com>
* libraries/compat/var_export.php: Dropped due to license problems. * libraries/compat/var_export.php: Dropped due to license problems.

View File

@@ -195,7 +195,11 @@ foreach ($dblist as $each_db) {
</select> </select>
&nbsp;<b>.</b>&nbsp; &nbsp;<b>.</b>&nbsp;
<input type="text" size="20" name="new_name" onfocus="this.select()" <input type="text" size="20" name="new_name" onfocus="this.select()"
value="<?php echo htmlspecialchars($GLOBALS['table']); ?>" /> value="<?php echo htmlspecialchars($GLOBALS['table']); ?>" /><br />
<input type="checkbox" name="sql_auto_increment" value="1" id="checkbox_auto_increment" />
<label for="checkbox_auto_increment"><?php echo $strAddAutoIncrement; ?></label><br />
</fieldset>
<fieldset class="tblFooters">
<input type="submit" name="submit_move" value="<?php echo $strGo; ?>" /> <input type="submit" name="submit_move" value="<?php echo $strGo; ?>" />
</fieldset> </fieldset>
</form> </form>