Changeset - 2a8b8d6ecfa1
[Not reviewed]
0 1 0
Mads - 12 years ago 2013-03-20 23:31:19
mads@ab3.no
Another small typo, this time in the 'INSERT INTO db_version' statement. Missing prefix.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/pqxxbackend.cpp
Show inline comments
 
@@ -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;
0 comments (0 inline, 0 general)