piler/util/db-upgrade-0.1.23-vs-0.1.24.sql

19 lines
514 B
MySQL
Raw Normal View History

2013-07-12 15:02:50 +02:00
alter table `domain` add column `ldap_id` int default 0;
alter table `audit` add column `domain` varchar(128) not null,
create index `audit_idx5` on `audit`(`domain`);
create table if not exists `ldap` (
`id` int not null auto_increment primary key,
`description` varchar(255) not null,
`ldap_type` varchar(255) not null,
`ldap_host` varchar(255) not null,
`ldap_base_dn` varchar(255) not null,
`ldap_bind_dn` varchar(255) not null,
`ldap_bind_pw` varchar(255) not null
) Engine=InnoDB;