Use InnoDB instead of the deprecated MyISAM in the sqloper table.

This commit is contained in:
Sadie Powell 2021-03-04 01:30:21 +00:00
parent d55581a110
commit cf343bdeaf

View File

@ -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;