mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
Add MsSQL schema for sql oper.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9115 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
e16f90eb32
commit
e7a7bc7bd2
8
extras/m_sqloper.mssql.sql
Normal file
8
extras/m_sqloper.mssql.sql
Normal file
@ -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])
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user