Add authenticator column to quasseluser migration table
[quassel.git] / src / core / postgresqlstorage.cpp
index 6a7f788..ce543ae 100644 (file)
@@ -1869,6 +1869,7 @@ bool PostgreSqlMigrationWriter::writeMo(const QuasselUserMO &user)
     bindValue(1, user.username);
     bindValue(2, user.password);
     bindValue(3, user.hashversion);
+    bindValue(4, user.authenticator);
     return exec();
 }