ITS#9679 - Update ldap_entry_objectclass table for current mysql/mariadb

This commit is contained in:
Anton Avramov 2021-09-10 11:24:34 -04:00 committed by Quanah Gibson-Mount
parent a7f2b55874
commit 01b653fd61

View file

@ -52,7 +52,7 @@ alter table ldap_entries add
drop table if exists ldap_entry_objclasses;
create table ldap_entry_objclasses
(
entry_id integer not null references ldap_entries(id),
entry_id integer unsigned not null references ldap_entries(id),
oc_name varchar(64)
);