Welcome to mirror list, hosted at ThFree Co, Russian Federation.

upgrade_column_info_4_6_5+.sql « sql - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12705a25d432dbc8f942eaaf0979e9dd8d8b331f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
-- -------------------------------------------------------------
-- SQL Commands to upgrade pmadb.pma__column_info table
-- for normal phpMyAdmin operation
--
-- This file is meant for use with phpMyAdmin 4.6.5 and above!
-- For older releases, please use create_tables.sql
--
-- Please don't forget to set up the table names in config.inc.php
--

-- --------------------------------------------------------

--
-- Database : `phpmyadmin`
--
USE `phpmyadmin`;

-- --------------------------------------------------------

--
-- Update table structure for table `pma__bookmark`
--
ALTER TABLE `pma__bookmark`
  CHANGE `id` `id` int( 10 ) unsigned NOT NULL auto_increment;