upgrade_tables_4_7_0+.sql 671 B

123456789101112131415161718192021222324
  1. -- -------------------------------------------------------------
  2. -- SQL Commands to upgrade pmadb.pma__column_info table
  3. -- for normal phpMyAdmin operation
  4. --
  5. -- This file is meant for use with phpMyAdmin 4.6.5 and above!
  6. -- For older releases, please use create_tables.sql
  7. --
  8. -- Please don't forget to set up the table names in config.inc.php
  9. --
  10. -- --------------------------------------------------------
  11. --
  12. -- Database : `phpmyadmin`
  13. --
  14. USE `phpmyadmin`;
  15. -- --------------------------------------------------------
  16. --
  17. -- Update table structure for table `pma__bookmark`
  18. --
  19. ALTER TABLE `pma__bookmark`
  20. CHANGE `id` `id` int( 10 ) unsigned NOT NULL auto_increment;