Last active
October 2, 2015 13:58
-
-
Save altmind/2253866 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE test.`PROF` ( | |
| `ID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , | |
| `COMMAND` VARCHAR( 250 ) NOT NULL , | |
| `HOST` VARCHAR( 250 ) NOT NULL , | |
| `STATE` VARCHAR( 250 ) NOT NULL , | |
| `INFO` TEXT NOT NULL , | |
| `INFO_PROCESSED` TEXT NULL , | |
| `TIME` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , | |
| `PROCESSED` INT NOT NULL DEFAULT '0', | |
| INDEX ( `COMMAND` , `HOST` , `TIME` , `PROCESSED` ) | |
| ) ENGINE = InnoDB ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment