From 34c068863fdc6f52d20edf7f4ae365a0da3d615b Mon Sep 17 00:00:00 2001 From: SJ Date: Fri, 26 Jul 2013 14:29:33 +0200 Subject: [PATCH] schema change --- util/db-mysql.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/db-mysql.sql b/util/db-mysql.sql index a3c650bc..171cac40 100644 --- a/util/db-mysql.sql +++ b/util/db-mysql.sql @@ -287,7 +287,8 @@ create table if not exists `remote` ( create table if not exists `domain` ( `domain` char(64) not null primary key, - `mapped` char(64) not null + `mapped` char(64) not null, + `ldap_id` int default 0 ) ENGINE=InnoDB; insert into `domain` (`domain`, `mapped`) values('local', 'local');