Fixed a syntax error.
This commit is contained in:
parent
c5d1872040
commit
3867842b35
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ sub addStorageTranslation {
|
||||||
my $session = shift;
|
my $session = shift;
|
||||||
print "\tAdding Storage Translation Table...";
|
print "\tAdding Storage Translation Table...";
|
||||||
$session->db->write(
|
$session->db->write(
|
||||||
"CREATE TABLE storageTranslation IF NOT EXISTS (
|
"CREATE TABLE IF NOT EXISTS storageTranslation (
|
||||||
guidValue VARCHAR(22) BINARY,
|
guidValue VARCHAR(22) BINARY,
|
||||||
hexValue VARCHAR(22) BINARY,
|
hexValue VARCHAR(22) BINARY,
|
||||||
PRIMARY KEY (guidValue)
|
PRIMARY KEY (guidValue)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue