Another small typo, this time in the 'INSERT INTO db_version' statement. Missing prefix.
This commit is contained in:
parent
bd756141e2
commit
2a8b8d6ecf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue