mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 05:29:30 +00:00
7 lines
190 B
SQL
7 lines
190 B
SQL
CREATE TABLE `history` (
|
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|
`nid` int(11) NOT NULL DEFAULT '0',
|
|
`timestamp` int(11) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`uid`,`nid`)
|
|
) ENGINE=InnoDB;
|