Another small typo, this time in the 'INSERT INTO db_version' statement. Missing prefix.

This commit is contained in:
Mads 2013-03-20 23:31:19 +01:00
parent bd756141e2
commit 2a8b8d6ecf

View file

@ -141,7 +141,7 @@ bool PQXXBackend::createDatabase() {
"UNIQUE (ver)"
");");
exec("INSERT INTO db_version (ver) VALUES ('1');");
exec("INSERT INTO " + m_prefix + "db_version (ver) VALUES ('1');");
}
return true;