mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-26 07:00:12 +01:00
9 lines
196 B
MySQL
9 lines
196 B
MySQL
|
|
||
|
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;
|
||
|
|