]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Use InnoDB instead of the deprecated MyISAM in the sqloper table.
authorSadie Powell <sadie@witchery.services>
Thu, 4 Mar 2021 01:30:21 +0000 (01:30 +0000)
committerSadie Powell <sadie@witchery.services>
Thu, 4 Mar 2021 01:30:21 +0000 (01:30 +0000)
docs/sql/sqloper.mysql.sql

index a8a2b7e1db9049dd81f361b5701493db9e23b495..83dfa68a686eea3c0bfa0befaffb788a7d9090b6 100644 (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;