Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE IF NOT EXISTS `syslog` (
- `ID` INT(11) NOT NULL AUTO_INCREMENT,
- `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- `IP` text COLLATE utf8_unicode_ci NOT NULL,
- `hostname` text COLLATE utf8_unicode_ci NOT NULL,
- `facility` text COLLATE utf8_unicode_ci NOT NULL,
- `source` text COLLATE utf8_unicode_ci NOT NULL,
- `message` text COLLATE utf8_unicode_ci NOT NULL,
- PRIMARY KEY (`ID`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement