Browse Source

Fix sql error

This fixes the import error <pre>ERROR 1072 (42000): Key column 'read' doesn't exist in table</pre>
develop
hbinded 10 years ago
parent
commit
26a187bd06
  1. 2
      sql/Aauth_v2.sql

2
sql/Aauth_v2.sql

@ -78,7 +78,7 @@ CREATE TABLE `aauth_pms` (
`date_sent` datetime DEFAULT NULL,
`date_read` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `full_index` (`id`,`sender_id`,`receiver_id`,`read`)
KEY `full_index` (`id`,`sender_id`,`receiver_id`,`date_read`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------

Loading…
Cancel
Save