bug #2975408 Data too long for column data_sql

This commit is contained in:
Marc Delisle
2010-04-26 07:41:36 -04:00
parent e9ee6cf1d1
commit 6393fff59d
2 changed files with 2 additions and 1 deletions

View File

@@ -185,7 +185,7 @@ CREATE TABLE IF NOT EXISTS `pma_tracking` (
`date_updated` datetime NOT NULL,
`schema_snapshot` text collate utf8_bin NOT NULL,
`schema_sql` text collate utf8_bin,
`data_sql` text collate utf8_bin,
`data_sql` longtext collate utf8_bin,
`tracking` set('UPDATE','REPLACE','INSERT','DELETE','TRUNCATE','CREATE DATABASE','ALTER DATABASE','DROP DATABASE','CREATE TABLE','ALTER TABLE','RENAME TABLE','DROP TABLE','CREATE INDEX','DROP INDEX','CREATE VIEW','ALTER VIEW','DROP VIEW') collate utf8_bin default NULL,
`tracking_active` int(1) unsigned NOT NULL default '1',
PRIMARY KEY (`db_name`,`table_name`,`version`)