| | |
| | | `email` varchar(128) NOT NULL, |
| | | `reply-to` varchar(128) NOT NULL default '', |
| | | `bcc` varchar(128) NOT NULL default '', |
| | | `signature` text NOT NULL default '', |
| | | `signature` text, |
| | | `html_signature` tinyint(1) NOT NULL default '0', |
| | | PRIMARY KEY (`identity_id`), |
| | | KEY `user_id` (`user_id`) |
| | |
| | | `changed` datetime NOT NULL default '0000-00-00 00:00:00', |
| | | `ip` VARCHAR(40) NOT NULL default '', |
| | | `vars` text NOT NULL, |
| | | PRIMARY KEY (`sess_id`) |
| | | PRIMARY KEY (`sess_id`), |
| | | INDEX `changed_index` (`changed`) |
| | | ); |
| | | |
| | | -- -------------------------------------------------------- |
| | |
| | | `headers` text NOT NULL, |
| | | `structure` text, |
| | | PRIMARY KEY (`message_id`), |
| | | INDEX `created_index` (`created`), |
| | | UNIQUE `uniqueness` (`user_id`, `cache_key`, `uid`) |
| | | ); |
| | | |