diff options
author | Sadie Powell <sadie@witchery.services> | 2021-03-04 01:30:21 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-03-04 01:30:21 +0000 |
commit | cf343bdeafb890e89796e55553a7c3fd57fc9342 (patch) | |
tree | d2ebf56244d3b8fe866d63b97bd8bb987529462b /docs/sql | |
parent | d55581a1107de1e548b67d29a9ca0fcb7f1a0572 (diff) |
Use InnoDB instead of the deprecated MyISAM in the sqloper table.
Diffstat (limited to 'docs/sql')
-rw-r--r-- | docs/sql/sqloper.mysql.sql | 2 |
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; |