2 changed files with 20 additions and 13 deletions
@ -75,8 +75,8 @@ CREATE TABLE `aauth_pms` ( |
|||||||
`receiver_id` int(11) unsigned NOT NULL, |
`receiver_id` int(11) unsigned NOT NULL, |
||||||
`title` varchar(255) NOT NULL, |
`title` varchar(255) NOT NULL, |
||||||
`message` text, |
`message` text, |
||||||
`date` datetime DEFAULT NULL, |
`date_sent` datetime DEFAULT NULL, |
||||||
`read` tinyint(1) DEFAULT '0', |
`date_read` datetime DEFAULT NULL, |
||||||
PRIMARY KEY (`id`), |
PRIMARY KEY (`id`), |
||||||
KEY `full_index` (`id`,`sender_id`,`receiver_id`,`read`) |
KEY `full_index` (`id`,`sender_id`,`receiver_id`,`read`) |
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
||||||
@ -126,7 +126,7 @@ CREATE TABLE `aauth_users` ( |
|||||||
-- ---------------------------- |
-- ---------------------------- |
||||||
-- Records of aauth_users |
-- Records of aauth_users |
||||||
-- ---------------------------- |
-- ---------------------------- |
||||||
INSERT INTO `aauth_users` VALUES ('1', '[email protected]', 'dd5073c93fb477a167fd69072e95455834acd93df8fed41a2c468c45b394bfe3', 'Admin', '0', null, null, null, null, null, null, null, null, '0'); |
INSERT INTO `aauth_users` VALUES ('1', '[email protected]', 'dd5073c93fb477a167fd69072e95455834acd93df8fed41a2c468c45b394bfe3', 'Admin', '0', null, null, null, null, null, null, null, null, null, '0'); |
||||||
|
|
||||||
-- ---------------------------- |
-- ---------------------------- |
||||||
-- Table structure for `aauth_user_to_group` |
-- Table structure for `aauth_user_to_group` |
||||||
|
Loading…
Reference in new issue