2012-02-12 Sancho Lerena <slerena@artica.es>
* pandoradb.sql: tserver table type is now InnoDB after modifying some indexes which was causing locks and corruption. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7625 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
619d2be13a
commit
baa647d232
|
@ -1,3 +1,8 @@
|
|||
2012-02-12 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* pandoradb.sql: tserver table type is now InnoDB after modifying
|
||||
some indexes which was causing locks and corruption.
|
||||
|
||||
2013-02-11 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* extensions/update_manager/load_updatemanager.php: Removed the keygen
|
||||
|
|
|
@ -790,7 +790,7 @@ CREATE TABLE IF NOT EXISTS `tserver` (
|
|||
`stat_utimestamp` bigint(20) NOT NULL default '0',
|
||||
PRIMARY KEY (`id_server`),
|
||||
KEY `name` (`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
-- server types:
|
||||
-- 0 data
|
||||
-- 1 network
|
||||
|
|
Loading…
Reference in New Issue