blob: fb81c0e99c870349fad4a47ec26ffd91630a12ea (
plain)
| 1
2
3
4
5
6
7
8
 | DROP TABLE IF EXISTS `logs`;
-- create logs table
CREATE TABLE `logs` (
  `time` int(14) NOT NULL,
  `realm` int(4) NOT NULL,
  `type` int(4) NOT NULL,
  `string` text
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 |