1234567891011121314151617 |
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- SET time_zone = "+00:00";
-
- --
- -- Table structure for table `messages`
- --
-
- CREATE TABLE IF NOT EXISTS `messages` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `server_id` int(11) NOT NULL,
- `nick_id` int(11) NOT NULL,
- `sender_nick_id` int(11) NOT NULL,
- `message` text NOT NULL,
- `anonymous` tinyint(1) NOT NULL,
- `date_posted` datetime NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=0 ;
|