summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-03-04 01:30:21 +0000
committerSadie Powell <sadie@witchery.services>2021-03-04 01:30:21 +0000
commitcf343bdeafb890e89796e55553a7c3fd57fc9342 (patch)
treed2ebf56244d3b8fe866d63b97bd8bb987529462b /docs
parentd55581a1107de1e548b67d29a9ca0fcb7f1a0572 (diff)
Use InnoDB instead of the deprecated MyISAM in the sqloper table.
Diffstat (limited to 'docs')
-rw-r--r--docs/sql/sqloper.mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sql/sqloper.mysql.sql b/docs/sql/sqloper.mysql.sql
index a8a2b7e1d..83dfa68a6 100644
--- a/docs/sql/sqloper.mysql.sql
+++ b/docs/sql/sqloper.mysql.sql
@@ -9,4 +9,4 @@ CREATE TABLE ircd_opers (
autologin tinyint(1) NOT NULL DEFAULT 0,
active tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (id)
-) ENGINE=MyISAM;
+) ENGINE=InnoDB;