pandorafms/pandora_console/extras/mr/29.sql

18 lines
433 B
MySQL
Raw Normal View History

2019-06-07 11:24:00 +02:00
START TRANSACTION;
DELETE FROM `ttipo_modulo` WHERE `nombre` LIKE 'log4x';
2019-06-21 23:05:21 +02:00
CREATE TABLE IF NOT EXISTS `tcredential_store` (
`identifier` varchar(100) NOT NULL,
`id_group` mediumint(4) unsigned NOT NULL DEFAULT 0,
`product` enum('CUSTOM', 'AWS', 'AZURE', 'GOOGLE') default 'CUSTOM',
`username` text,
`password` text,
`extra_1` text,
`extra_2` text,
PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2019-06-07 11:24:00 +02:00
COMMIT;