Revision: 128
http://cs-webapplibs.svn.sourceforge.net/cs-webapplibs/?rev=128&view=rev
Author: crazedsanity
Date: 2009-08-20 21:09:10 +0000 (Thu, 20 Aug 2009)
Log Message:
-----------
Make sure all tables are using InnoDB as the engine (for transaction support).
Modified Paths:
--------------
trunk/0.3/setup/db_session_schema.mysql.sql
Modified: trunk/0.3/setup/db_session_schema.mysql.sql
===================================================================
--- trunk/0.3/setup/db_session_schema.mysql.sql 2009-08-20 20:39:35 UTC (rev 127)
+++ trunk/0.3/setup/db_session_schema.mysql.sql 2009-08-20 21:09:10 UTC (rev 128)
@@ -14,4 +14,4 @@
`session_data` LONGTEXT NOT NULL,
PRIMARY KEY (`session_store_id`)
)
-ENGINE = MyISAM;
\ No newline at end of file
+ENGINE = InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|