mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-07-29 15:35:01 +02:00
extended the basedn and binddn columns
This commit is contained in:
@@ -240,8 +240,8 @@ create table if not exists `group_email` (
|
|||||||
create table if not exists `remote` (
|
create table if not exists `remote` (
|
||||||
`remotedomain` char(64) not null primary key,
|
`remotedomain` char(64) not null primary key,
|
||||||
`remotehost` char(64) not null,
|
`remotehost` char(64) not null,
|
||||||
`basedn` char(64) not null,
|
`basedn` char(255) not null,
|
||||||
`binddn` char(64) not null,
|
`binddn` char(255) not null,
|
||||||
`sitedescription` char(64) default null
|
`sitedescription` char(64) default null
|
||||||
) ENGINE=InnoDB;
|
) ENGINE=InnoDB;
|
||||||
|
|
||||||
|
@@ -1,2 +1,4 @@
|
|||||||
alter table `user` change column `password` `password` char(128) default null;
|
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;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user