mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-02 18:03:51 +00:00
4 lines
292 B
MySQL
4 lines
292 B
MySQL
|
alter table LDAPUsers add column reference_id VARCHAR(255);
|
||
|
alter table EmailUser add column reference_id VARCHAR(255);
|
||
|
CREATE UNIQUE INDEX IF NOT EXISTS reference_id_index on EmailUser (reference_id);
|
||
|
CREATE UNIQUE INDEX IF NOT EXISTS ldapusers_reference_id_index on LDAPUsers(reference_id);
|