1
0

Fix ipn message table to include table prefix

This commit is contained in:
Ben Smith 2010-10-17 10:25:29 +08:00 committed by Bharat Mediratta
parent 85915b1ef1
commit b7c4bafe3f

View File

@ -68,7 +68,7 @@ class basket_installer
PRIMARY KEY (`id`))
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
$db->query("CREATE TABLE IF NOT EXISTS `ipn_messages` (
$db->query("CREATE TABLE IF NOT EXISTS {ipn_messages} (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`date` int(11) NOT NULL,
`key` varchar(20) NOT NULL,
@ -220,5 +220,6 @@ Thanks");
$db->query("DROP TABLE IF EXISTS {item_products}");
$db->query("DROP TABLE IF EXISTS {postage_bands}");
$db->query("DROP TABLE IF EXISTS {orders}");
$db->query("DROP TABLE IF EXISTS {ipn_messages}");
}
}