From e7a7bc7bd2b80940878c436c6fd9c5059bec7577 Mon Sep 17 00:00:00 2001 From: peavey Date: Sun, 16 Mar 2008 22:53:20 +0000 Subject: Add MsSQL schema for sql oper. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9115 e03df62e-2008-0410-955e-edbf42e46eb7 --- extras/m_sqloper.mssql.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 extras/m_sqloper.mssql.sql (limited to 'extras') diff --git a/extras/m_sqloper.mssql.sql b/extras/m_sqloper.mssql.sql new file mode 100644 index 000000000..5056e12e9 --- /dev/null +++ b/extras/m_sqloper.mssql.sql @@ -0,0 +1,8 @@ +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, + PRIMARY KEY CLUSTERED ([id]) +) -- cgit v1.2.3