mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 23:31:58 +01:00
extended the basedn and binddn columns
This commit is contained in:
parent
7cd3c12070
commit
975b63ded0
@ -240,8 +240,8 @@ create table if not exists `group_email` (
|
||||
create table if not exists `remote` (
|
||||
`remotedomain` char(64) not null primary key,
|
||||
`remotehost` char(64) not null,
|
||||
`basedn` char(64) not null,
|
||||
`binddn` char(64) not null,
|
||||
`basedn` char(255) not null,
|
||||
`binddn` char(255) not null,
|
||||
`sitedescription` char(64) default null
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
|
@ -1,2 +1,4 @@
|
||||
alter table `user` change column `password` `password` char(128) default null;
|
||||
alter table `remote` change column `basedn` `basedn` char(255) not null;
|
||||
alter table `remote` change column `binddn` `binddn` char(255) not null;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user