Change recommeded schema for data field in mysql event table

Closes #27447
This commit is contained in:
Mike Place 2015-09-28 13:32:02 -06:00
parent a563af29d3
commit 5e745ad6da

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`),