mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-27 03:20:22 +08:00
14 lines
441 B
MySQL
14 lines
441 B
MySQL
|
|
||
|
if exists (select * from sysobjects where id = object_id(N'ldap_attrs') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
||
|
drop table ldap_attrs
|
||
|
GO
|
||
|
|
||
|
if exists (select * from sysobjects where id = object_id(N'ldap_entries') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
||
|
drop table ldap_entries
|
||
|
GO
|
||
|
|
||
|
if exists (select * from sysobjects where id = object_id(N'ldap_objclasses') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
||
|
drop table ldap_objclasses
|
||
|
GO
|
||
|
|