Update finishing.blade.php

This commit is contained in:
Julian Prieber 2023-03-08 19:45:30 +01:00
parent 1abcf14b5a
commit 6d035cbad0
1 changed files with 0 additions and 6 deletions

View File

@ -145,12 +145,6 @@ use Illuminate\Support\Facades\File;
]); ]);
} catch (exception $e) {} } catch (exception $e) {}
// Remove unique constrain from user names
try {
$affected_rows = DB::delete(DB::raw("DELETE FROM users WHERE id NOT IN (SELECT MIN(id) FROM users GROUP BY name)"));
$message = "Duplicate rows removed successfully. $affected_rows rows were affected.";
} catch (\Exception $e) {}
// Changes saved profile images from littlelink_name to IDs. // Changes saved profile images from littlelink_name to IDs.
// This runs every time the updater runs. // This runs every time the updater runs.
// Not sure if this will cause any issues. // Not sure if this will cause any issues.