Translated using Weblate (Catalan)
[phpmyadmin.git] / sql / upgrade_tables_4_7_0+.sql
blob12705a25d432dbc8f942eaaf0979e9dd8d8b331f
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 --
11 -- --------------------------------------------------------
14 -- Database : `phpmyadmin`
16 USE `phpmyadmin`;
18 -- --------------------------------------------------------
21 -- Update table structure for table `pma__bookmark`
23 ALTER TABLE `pma__bookmark`
24   CHANGE `id` `id` int( 10 ) unsigned NOT NULL auto_increment;