]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - extras/m_sqloper.mysql.sql
Merge branch 'insp20' into master.
[user/henk/code/inspircd.git] / extras / m_sqloper.mysql.sql
index ee993c7719fa98d07ffbddd5c14fcd837b2e6e19..a8a2b7e1db9049dd81f361b5701493db9e23b495 100644 (file)
@@ -1 +1,12 @@
--- MySQL dump 9.11\r--\r-- Host: localhost    Database: brain\r-- ------------------------------------------------------\r-- Server version        4.0.20\r\r--\r-- Table structure for table `ircd_opers`\r--\r\rCREATE TABLE ircd_opers (\r  id bigint(20) NOT NULL auto_increment,\r  username text,\r  password text,\r  hostname text,\r  type text,\r  PRIMARY KEY  (id)\r) TYPE=MyISAM;\r\r--\r-- Dumping data for table `ircd_opers`\r--\r\r\r
\ No newline at end of file
+CREATE TABLE ircd_opers (
+  id bigint(20) NOT NULL auto_increment,
+  name text NOT NULL,
+  password text NOT NULL,
+  hash text,
+  host text NOT NULL,
+  type text NOT NULL,
+  fingerprint text,
+  autologin tinyint(1) NOT NULL DEFAULT 0,
+  active tinyint(1) NOT NULL DEFAULT 1,
+  PRIMARY KEY  (id)
+) ENGINE=MyISAM;