mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 00:51:59 +01:00
12 lines
242 B
SQL
12 lines
242 B
SQL
|
|
create table if not exists `domain_user` (
|
|
`domain` char(64) not null,
|
|
`uid` int unsigned not null,
|
|
key `domain_user_idx` (`domain`),
|
|
key `domain_user_idx2` (`uid`)
|
|
) ENGINE=InnoDB;
|
|
|
|
|
|
alter table metadata drop index message_id;
|
|
|