summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-08-23 19:51:06 +0200
committerAttila Molnar <attilamolnar@hush.com>2016-08-23 19:51:06 +0200
commita22f9e6b4688f5435d23a3d91bfc6574e74c7113 (patch)
tree19b56125321ddb7253eca06267f0cb79a2edb340 /extras
parentbcdc3b0bb0ba957a9e99cd6db7f1242a9e587400 (diff)
Remove broken mssql module
Issue #1006
Diffstat (limited to 'extras')
-rw-r--r--extras/m_sqloper.mssql.sql9
1 files changed, 0 insertions, 9 deletions
diff --git a/extras/m_sqloper.mssql.sql b/extras/m_sqloper.mssql.sql
deleted file mode 100644
index 7580a4391..000000000
--- a/extras/m_sqloper.mssql.sql
+++ /dev/null
@@ -1,9 +0,0 @@
-CREATE TABLE [dbo].[ircd_opers] (
- [id] int IDENTITY(1, 1) NOT NULL,
- [username] varchar(255) NULL,
- [password] varchar(255) NULL,
- [hostname] varchar(255) NULL,
- [type] varchar(255) NULL,
- [active] bit NOT NULL DEFAULT 1,
- PRIMARY KEY CLUSTERED ([id])
-)