Skip to content

Commit

Permalink
Add MsSQL schema for sql oper.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9115 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
peavey committed Mar 16, 2008
1 parent e16f90e commit e7a7bc7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions 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])
)

0 comments on commit e7a7bc7

Please sign in to comment.