Change default table type for radacct and postauth to be INNODB explicitly. They...
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 1 Jul 2011 13:41:51 +0000 (15:41 +0200)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 1 Jul 2011 13:41:51 +0000 (15:41 +0200)
raddb/sql/mysql/schema.sql

index 0634584..1e75f7b 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;