Skip to content
Snippets Groups Projects
Commit 68125266 authored by Florin Peter's avatar Florin Peter
Browse files

changed migrationStatus to migration_status for pgsql

parent e0e89602
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@
<comments>Whether encryption key recovery is enabled</comments>
</field>
<field>
<name>migrationStatus</name>
<name>migration_status</name>
<type>boolean</type>
<notnull>true</notnull>
<default>0</default>
......
......@@ -1033,7 +1033,7 @@ class Util {
$sql = 'UPDATE
*PREFIX*encryption
SET
migrationStatus = ?
migration_status = ?
WHERE
uid = ?';
......@@ -1062,7 +1062,7 @@ class Util {
public function getMigrationStatus() {
$sql = 'SELECT
migrationStatus
migration_status
FROM
`*PREFIX*encryption`
WHERE
......@@ -1078,7 +1078,7 @@ class Util {
while( $row = $result->fetchRow() ) {
$migrationStatus[] = $row['migrationStatus'];
$migrationStatus[] = $row['migration_status'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment