Fixed a syntax error.

This commit is contained in:
Frank Dillon 2007-05-04 19:30:37 +00:00
parent c5d1872040
commit 3867842b35

View file

@ -40,7 +40,7 @@ sub addStorageTranslation {
my $session = shift;
print "\tAdding Storage Translation Table...";
$session->db->write(
"CREATE TABLE storageTranslation IF NOT EXISTS (
"CREATE TABLE IF NOT EXISTS storageTranslation (
guidValue VARCHAR(22) BINARY,
hexValue VARCHAR(22) BINARY,
PRIMARY KEY (guidValue)