Merge pull request #27472 from cachedout/fix_27447

Change recommeded schema for data field in mysql event table
This commit is contained in:
Mike Place 2015-09-29 09:49:37 -06:00
commit 68d784c3dd

View file

@ -91,7 +91,7 @@ Use the following mysql database schema:
CREATE TABLE `salt_events` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`tag` varchar(255) NOT NULL,
`data` varchar(1024) NOT NULL,
`data` mediumtext NOT NULL,
`alter_time` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
`master_id` varchar(255) NOT NULL,
PRIMARY KEY (`id`),