Set InnoDB as the default on accounting and postauth tables.
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 18 Jul 2012 21:52:05 +0000 (23:52 +0200)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 18 Jul 2012 21:52:05 +0000 (23:52 +0200)
raddb/sql/mysql/schema.sql

index 3fa0ce9..758479f 100644 (file)
@@ -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;