mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #27472 from cachedout/fix_27447
Change recommeded schema for data field in mysql event table
This commit is contained in:
commit
68d784c3dd
1 changed files with 1 additions and 1 deletions
|
@ -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`),
|
||||
|
|
Loading…
Add table
Reference in a new issue