Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

9 lines
242 B
Transact-SQL

-- SQL Server table removal for ONLYOFFICE
-- Requires SQL Server 2016 (13.x) or newer
-- Features used:
-- - DROP TABLE IF EXISTS (SQL Server 2016+)
-- USE onlyoffice;
DROP TABLE IF EXISTS task_result;
DROP TABLE IF EXISTS doc_changes;
GO