From: Arran Cudbard-Bell Date: Wed, 18 Jul 2012 21:52:05 +0000 (+0200) Subject: Set InnoDB as the default on accounting and postauth tables. X-Git-Tag: release_2_2_0~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3f03d75a92ebb1722dd796f027cbf331ac1e08d;p=thirdparty%2Ffreeradius-server.git Set InnoDB as the default on accounting and postauth tables. --- diff --git a/raddb/sql/mysql/schema.sql b/raddb/sql/mysql/schema.sql index 3fa0ce91d1d..758479f27b2 100644 --- a/raddb/sql/mysql/schema.sql +++ b/raddb/sql/mysql/schema.sql @@ -50,7 +50,7 @@ CREATE TABLE radacct ( KEY acctstarttime (acctstarttime), KEY acctstoptime (acctstoptime), KEY nasipaddress (nasipaddress) -) ; +) ENGINE = INNODB; # # Table structure for table 'radcheck' @@ -131,4 +131,4 @@ CREATE TABLE radpostauth ( reply varchar(32) NOT NULL default '', authdate timestamp NOT NULL, PRIMARY KEY (id) -) ; +) ENGINE = INNODB;