extended the basedn and binddn columns

This commit is contained in:
SJ 2012-08-06 14:01:56 +02:00
parent 7cd3c12070
commit 975b63ded0
2 changed files with 4 additions and 2 deletions

View File

@ -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;

View File

@ -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;