diff options
author | Daniel Vassdal <shutter@canternet.org> | 2015-02-21 12:37:42 +0100 |
---|---|---|
committer | Daniel Vassdal <shutter@canternet.org> | 2015-02-22 14:37:40 +0100 |
commit | afaf9495c1f2d5f1ba7b01c3b8a437083d91abb2 (patch) | |
tree | 2b773ef303b40a9787724a7b859353b57bff4110 /extras | |
parent | dddfcadebd313ab8b9fbaf4769d65f6473e1614a (diff) |
m_sqloper.mssql.sql: Add `active` column
Diffstat (limited to 'extras')
-rw-r--r-- | extras/m_sqloper.mssql.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extras/m_sqloper.mssql.sql b/extras/m_sqloper.mssql.sql index 5056e12e9..7580a4391 100644 --- a/extras/m_sqloper.mssql.sql +++ b/extras/m_sqloper.mssql.sql @@ -4,5 +4,6 @@ CREATE TABLE [dbo].[ircd_opers] ( [password] varchar(255) NULL,
[hostname] varchar(255) NULL,
[type] varchar(255) NULL,
+ [active] bit NOT NULL DEFAULT 1,
PRIMARY KEY CLUSTERED ([id])
)
|