]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
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 3fa0ce91d1d72c6bd7b92bdf5a5d33525dd9f3ef..758479f27b273dbad1f2d8e58a7f27ab4ebb6d80 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;